-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathwebpack.config.js
70 lines (69 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
var CleanWebpackPlugin = require('clean-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
var UglifyJSPlugin = require('uglifyjs-webpack-plugin');
var CloudCmsPlugin = require('cloudcms-webpack-plugin');
module.exports = {
"context": process.cwd(),
"entry": ["./index.js"],
"output": {
"path": __dirname + "/dist",
"filename": "index.js",
"libraryTarget": "amd"
},
"externals": [
CloudCmsPlugin.externalFn
],
"module": {
"rules": [{
// write out CSS referenced files into assets directory
test: /\.(jpe?g|png|gif|woff)$/i,
loader:"file-loader",
query:{
name:'[path][name]-[hash].[ext]',
outputPath: 'assets/'
}
}, {
// support for inline css within modules
"test": /\.css$/,
"use": [{
"loader": "css-loader",
"options": {
"minimize": true
}
}]
}, {
// support for inline html within modules
"test": /\.html$/,
"use": [{
"loader": "raw-loader"
}]
}, {
// support for inline text within modules
"test": /\.txt$/,
"use": [{
"loader": "raw-loader"
}]
}]
},
"plugins": [
// new CleanWebpackPlugin(["./dist"]),
new CopyWebpackPlugin([{
"from": "./config",
"to": "config"
}, {
"from": "./templates",
"to": "templates"
}, {
"from": "./data",
"to": "data"
}, {
"from": "./install.js"
}, {
"from": "./uninstall.js"
}, {
"from": "./module.json"
}]),
new UglifyJSPlugin(),
new CloudCmsPlugin()
]
};