Essential features to properly work on a js library package
Add peer dependencies:
$ yarn add -D rollup
...then install config packages:
$ yarn add -D @azimutlabs/rollup-{config,config-essentials}
// rollup.config.js
import essentials from '@azimutlabs/rollup-config-essentials';
export default essentials(
// Output format. Defaults to 'es'
'cjs',
{
// Optional RollupOptions that will be merged with configuration options.
shimMissingExports: true,
// Optional RollupConfigPlugins<P> object that will be merged with
// configuration plugins.
pluginBuilders: {
// Merge with default 'external' plugin options.
external: {
checkForBabelMacro: true,
},
// Merge with default '@rollup/plugin-node-resolve' plugin options.
nodeResolve: {
modulesOnly: true,
},
},
}
);
Any PR is welcomed by our @js-opensource team. Check out our contributing guidelines for more info.