-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
102 lines (94 loc) · 2.09 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
const path = require('path');
const HTMLPlugin = require('html-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const PATHS = {
src: path.join(__dirname, '/src'), //absolute path to Dir/src
dist: path.join(__dirname, '/dist'), //absolute path to Dir/dist
build: path.join(__dirname, '/build'), //absolute path to Dir/build for single bundle
};
const cssLoaders = (extra) => {
const loaders = [
{
loader: 'string-replace-loader',
options: {
search: /(\\r\\n|\\n|\\r|\s{2,})/gm,
replace: '',
},
},
'css-loader',
];
if (extra) {
loaders.push(extra);
}
return loaders;
};
// common config
const config = {
resolve: {
extensions: ['.js', '.json'],
},
resolveLoader: {
// own loader
alias: {
'remove-extra-spaces': path.resolve(__dirname, 'loaders/remove-extra-spaces.js'),
},
},
module: {
rules: [
{
test: /\.css$/,
use: cssLoaders(),
},
{
test: /\.js$/,
exclude: /node_modules/,
use: [
{
loader: 'remove-extra-spaces',
},
],
},
],
},
performance: { hints: false },
};
const configDev = Object.assign({}, config, {
name: 'configDev',
entry: {
main: PATHS.src + '/index.js',
},
output: {
filename: 'modal-win-component.min.js',
path: PATHS.dist,
},
devServer: {
port: 3000,
hot: true,
},
plugins: [
new HTMLPlugin({
template: './index.html',
}),
new CleanWebpackPlugin(),
new CopyWebpackPlugin({
patterns: [
{ from: './demo.css', to: 'demo.css' },
{ from: './demo.js', to: 'demo.js' },
{ from: './img', to: 'img' },
{ from: './favicon.ico', to: 'favicon.ico' },
],
}),
],
});
const configBuild = Object.assign({}, config, {
name: 'configBuild',
entry: {
main: PATHS.src + '/index.js',
},
output: {
filename: 'modal-win-component.min.js',
path: PATHS.build,
},
});
module.exports = [configDev, configBuild];