Automatically transpile modern packages in node_modules.
Available in 3 fun flavours: plugin, loader and loader factory.
Add the plugin to your webpack config, and it should handle everything for you.
You can customize the syntax target in your Babel configuration.
const ModernNpmPlugin = require('webpack-plugin-modern-npm');
module.exports = {
plugins: [
new ModernNpmPlugin()
]
};
The loader works just like the plugin and accepts the same options, it's just defined inline.
You can customize the syntax target in your Babel configuration.
const modernNpmLoader = require('webpack-plugin-modern-npm/loader');
module.exports = {
module: {
rules: [
// auto-transpile modern stuff found in node_modules:
'webpack-plugin-modern-npm/loader',
// keep your current babel-loader for your own code:
{
loader: 'babel-loader',
exclude: /node_modules/,
test: /\.m?jsx?$/i
}
]
}
};
Note: In general, direct usage of this factory should be unnecessary and is not recommended.
See anyway
const autoBabelLoader = require('webpack-plugin-modern-npm/auto-babel-loader');
module.exports = {
module: {
rules: [
// auto-transpile modern stuff found in node_modules:
autoBabelLoader({
env: 'nodemodules' // if you want to custimize
}),
// keep your current babel-loader for your own code:
{
loader: 'babel-loader',
exclude: /node_modules/,
test: /\.m?jsx?$/i
}
]
}
};
The syntax target (which version of JavaScript, or which browsers to support) for @babel/preset-env
within node_modules can be customized using "env"
overrides in your existing Babel configuration file (.babelrc
or babel.config.js
):
The "env"
name defaults to "npm"
and can be changed by passing the {env:"foo"}
option to either the plugin or loader.