Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
exclude(instance) {
// ignore known duplicates
return ['domelementtype', 'hash-base', 'inherits'].includes(
instance.name
);
}
}),
new HtmlWebpackPlugin({
chunksSortMode: 'none',
template: plib.join('templates', 'template.html'),
title: jlab.name || 'JupyterLab'
}),
new webpack.HashedModuleIdsPlugin(),
// custom plugin for ignoring files during a `--watch` build
new WPPlugin.FilterWatchIgnorePlugin(ignored),
// custom plugin that copies the assets to the static directory
new WPPlugin.FrontEndPlugin(buildDir, jlab.staticDir)
];
if (process.argv.includes('--analyze')) {
plugins.push(new BundleAnalyzerPlugin());
}
module.exports = [
{
mode: 'development',
entry: {
main: ['whatwg-fetch', plib.resolve(buildDir, 'index.out.js')]
},
// Map Phosphor files to lumino files.
resolve: {