1.3.1 • Published 4 years ago

@aligent/babel-preset v1.3.1

Weekly downloads
26
License
MIT
Repository
bitbucket
Last release
4 years ago

Aligent Babel Config Present

Simply install via npm i -D @aligent/babel-preset

Then add the following to you babel.config.js or .babelrc.json

{
  "presets": ["@aligent/babel-preset"]
}

You can also configure the preset to pass options through to @babel/preset-env

module.exports = {
    presets: [
        [
            '@aligent/babel-preset',
            // same config here will be merge with default and provided to @babel/preset-env
            {
                shippedProposals: true,
                useBuiltIns: 'entry',
                modules: false,
                corejs: '3'
            }
        ]
    ]
};

Update

Once updated the config, run npm test and check inside project too.

  • Update changelog and commit
  • Run npm version patch|minor|major
  • Git push (--tags)
  • npm publish
1.3.1

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago