-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
50 lines (47 loc) · 1.37 KB
/
webpack.config.js
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
const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const ZipWebpackPlugin = require('zip-webpack-plugin');
const info = require('./info.json');
const config = {
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
entry: './index.js',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'build'),
module: true,
library: {
type: 'commonjs2',
export: 'default'
}
},
experiments: {
outputModule: true
},
externals: {
'clipcc-extension': 'ClipCCExtension'
},
externalsType: 'global',
resolve: {
extensions: ['.ts', '.js']
},
plugins: [
new CopyWebpackPlugin({
patterns: [{
from: path.join(__dirname, 'locales'),
to: path.join(__dirname, 'build/locales')
}, {
from: path.join(__dirname, 'assets'),
to: path.join(__dirname, 'build/assets')
}, {
from: path.join(__dirname, 'info.json'),
to: path.join(__dirname, 'build/info.json')
}]
}),
new ZipWebpackPlugin({
path: path.join(__dirname, 'dist'),
filename: `${info.id}@${info.version}`,
extension: 'ccx'
})
]
};
module.exports = config;