-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathwebpack.config.js
More file actions
63 lines (59 loc) · 1.61 KB
/
Copy pathwebpack.config.js
File metadata and controls
63 lines (59 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* eslint-env node */
const path = require('path');
const webpack = require('webpack');
const fs = require('fs');
module.exports = (env, argv) => {
var config = {
entry: {
// Each entry in here would declare a file that needs to be transpiled
// and included in the extension source.
// For example, you could add a background script like:
background: 'background.js',
content: 'content.js',
popup: 'popup.js',
// 'navigate-collection': 'navigate-collection.js',
},
output: {
// This copies each source entry into the extension dist folder named
// after its entry config key.
path: path.join(__dirname, 'extension', 'dist'),
filename: '[name].js',
},
module: {
rules: [
{
exclude: ['/node_modules/'],
test: /\.js$/,
use: [
// This transpiles all code (except for third party modules) using Babel.
{
// Babel options are in .babelrc
loader: 'babel-loader',
},
]
}
]
},
resolve: {
// This allows you to import modules just like you would in a NodeJS app.
extensions: ['.js', '.jsx'],
modules: [
path.join(__dirname, 'src'),
'node_modules',
],
},
plugins: [
new webpack.BannerPlugin({
banner: fs.readFileSync('License_banner', 'utf8'),
})
]
}
if (argv.mode === 'production') {
config.mode = 'production';
config.devtool = false;
} else {
config.mode = 'development';
config.devtool = 'source-map';
}
return config;
};