Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
babel-brunch
Advanced tools
Brunch plugin to turn latest ECMAScript standard code into vanilla ES5 with no runtime required.
Brunch plugin using Babel to turn latest ECMAScript standard code into vanilla ES5 with no runtime required.
All the .js
files in your project will be run through the babel compiler,
except those it is configured to ignore, unless you use the pattern
option.
Additionally, starting Brunch 2.7, babel-brunch
will also compile NPM dependencies.
npm install --save-dev babel-brunch
babel-preset-env (a Babel preset that can automatically determine the plugins and polyfills you need based on your supported environments) is used by default.
The default behavior without options runs all transforms (behaves the same as babel-preset-latest).
Optionally, you can configure the preset for your needs:
module.exports.plugins = {
babel: {
presets: [['env', {
targets: {
browsers: ['last 2 versions', 'safari >= 7']
}
}]]
}
}
Read more about env
's options.
Install a plugin:
npm install --save-dev babel-preset-react
Then, make sure Brunch sees it:
module.exports.plugins = {
// ...
babel: {
presets: ['env', 'react']
}
}
module.exports.plugins = {
// ...
babel: {
ignore: [
/^node_modules/,
'app/legacyES5Code/**/*'
]
}
}
module.exports.plugins = {
// ...
babel: {
pattern: /\.(js|vue)$/ // By default, JS|JSX|ES6 are used.
}
}
Set Babel options in your Brunch
config (such as brunch-config.js
) except for filename
and sourceMap
which are handled internally.
See release notes page on GitHub
FAQs
Brunch plugin to turn latest ECMAScript standard code into vanilla ES5 with no runtime required.
The npm package babel-brunch receives a total of 2,876 weekly downloads. As such, babel-brunch popularity was classified as popular.
We found that babel-brunch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.