Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
],
};
const Page = {
name: "Page",
entry: {
Popup: './lib/es6/src/extension/page.js',
},
output: {
path: path.join(__dirname, 'docs/'),
filename: '[name].bundle.js',
},
plugins: [
new webpack.DefinePlugin({
'__REASON_VERSION__': JSON.stringify(reasonPackage.version),
'__OCAML_VERSION__': JSON.stringify(ocamlPackage.version)
}),
],
module: commonModule,
};
module.exports = [Extension, Page];
entry: {
Content: './lib/es6/src/extension/content.js',
ContentLoader: './lib/es6/src/extension/contentLoader.js',
Popup: './lib/es6/src/extension/popup.js',
Background: './lib/es6/src/extension/background.js',
},
output: {
path: path.join(__dirname, '_build/extension/'),
filename: '[name].bundle.js',
},
module: commonModule,
plugins: [
new GenerateJsonPlugin('manifest.json', manifest),
new webpack.DefinePlugin({
'__REASON_VERSION__': JSON.stringify(reasonPackage.version),
'__OCAML_VERSION__': JSON.stringify(ocamlPackage.version)
}),
],
};
const Page = {
name: "Page",
entry: {
Popup: './lib/es6/src/extension/page.js',
},
output: {
path: path.join(__dirname, 'docs/'),
filename: '[name].bundle.js',
},
plugins: [
new webpack.DefinePlugin({
'__REASON_VERSION__': JSON.stringify(reasonPackage.version),