-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.conf.js
188 lines (178 loc) · 5.47 KB
/
webpack.dev.conf.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
const commonConfig = require('./webpack.common.conf');
const webpackMerge = require('webpack-merge'); // used to merge webpack configs
// tools
const chalk = require('chalk');
const path = require('path');
const webpack = require('webpack');
const ip = require('ip').address();
/**
* Webpack Plugins
*/
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ScriptExtHtmlWebpackPlugin = require('script-ext-html-webpack-plugin');
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin')
const portfinder = require('portfinder')
const config = require('./config');
const utils = require('./utils');
const helper = require('./helper');
/**
* Modify the url that will open on the browser.
* @param {Array} entry
*/
const postMessageToOpenPage = (entry) => {
let entrys = Object.keys(entry);
let openpage = config.dev.openPage;
// exclude vendor entry.
entrys = entrys.filter(entry => entry !== 'vendor' );
if(entrys.indexOf('index') > -1) {
openpage += `?page=index.js`;
}
else {
openpage += `?page=${entrys[0]}.js`;
}
if(entrys.length > 1) {
openpage += `&entrys=${entrys.join('|')}`
}
return openpage;
}
const openPage = postMessageToOpenPage(commonConfig[0].entry);
/**
* Generate multiple entrys
* @param {Array} entry
*/
const generateHtmlWebpackPlugin = (entry) => {
let entrys = Object.keys(entry);
// exclude vendor entry.
entrys = entrys.filter(entry => entry !== 'vendor' );
const htmlPlugin = entrys.map(name => {
return new HtmlWebpackPlugin({
filename: name + '.html',
template: helper.rootNode(`web/index.html`),
isDevServer: true,
chunksSortMode: 'dependency',
inject: true,
devScripts: config.dev.htmlOptions.devScripts,
chunks: ['vendor', name]
})
})
return htmlPlugin;
}
/**
* Webpack configuration for browser.
*/
const devWebpackConfig = webpackMerge(commonConfig[0], {
/*
* Options affecting the resolving of modules.
*
* See: http://webpack.github.io/docs/configuration.html#module
*/
module: {
rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true })
},
/**
* Developer tool to enhance debugging
*
* See: http://webpack.github.io/docs/configuration.html#devtool
* See: https://github.com/webpack/docs/wiki/build-performance#sourcemaps
*/
devtool: config.dev.devtool,
/*
* Add additional plugins to the compiler.
*
* See: http://webpack.github.io/docs/configuration.html#plugins
*/
plugins: [
/**
* Plugin: webpack.DefinePlugin
* Description: The DefinePlugin allows you to create global constants which can be configured at compile time.
*
* See: https://webpack.js.org/plugins/define-plugin/
*/
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': config.dev.env
}
}),
/*
* Plugin: HtmlWebpackPlugin
* Description: Simplifies creation of HTML files to serve your webpack bundles.
* This is especially useful for webpack bundles that include a hash in the filename
* which changes every compilation.
*
* See: https://github.com/ampedandwired/html-webpack-plugin
*/
...generateHtmlWebpackPlugin(commonConfig[0].entry),
/*
* Plugin: ScriptExtHtmlWebpackPlugin
* Description: Enhances html-webpack-plugin functionality
* with different deployment options for your scripts including:
*
* See: https://github.com/numical/script-ext-html-webpack-plugin
*/
new ScriptExtHtmlWebpackPlugin({
defaultAttribute: 'defer'
})
],
/**
* Webpack Development Server configuration
* Description: The webpack-dev-server is a little node.js Express server.
* The server emits information about the compilation state to the client,
* which reacts to those events.
*
* See: https://webpack.github.io/docs/webpack-dev-server.html
*/
devServer: {
clientLogLevel: 'warning',
compress: true,
contentBase: config.dev.contentBase,
host: config.dev.host,
port: config.dev.port,
historyApiFallback: config.dev.historyApiFallback,
public: config.dev.public,
open:config.dev.open,
watchContentBase: config.dev.watchContentBase,
overlay: config.dev.errorOverlay
? { warnings: false, errors: true }
: false,
proxy: config.dev.proxyTable,
quiet: true, // necessary for FriendlyErrorsPlugin
openPage: openPage,
watchOptions: config.dev.watchOptions
}
});
/**
* Webpack configuration for weex.
*/
const weexConfig = webpackMerge(commonConfig[1], {
watch: true
})
// build source to weex_bundle with watch mode.
webpack(weexConfig, (err, stats) => {
if (err) {
console.err('COMPILE ERROR:', err.stack)
}
})
module.exports = new Promise((resolve, reject) => {
portfinder.basePort = process.env.PORT || config.dev.port
portfinder.getPort((err, port) => {
if (err) {
reject(err)
} else {
// publish the new Port, necessary for e2e tests
process.env.PORT = port
// add port to devServer config
devWebpackConfig.devServer.port = port
devWebpackConfig.devServer.public = `${ip}:${port}`
// Add FriendlyErrorsPlugin
devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({
compilationSuccessInfo: {
messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`],
},
onErrors: config.dev.notifyOnErrors
? utils.createNotifierCallback()
: undefined
}))
resolve(devWebpackConfig)
}
})
})