forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.base.ts
292 lines (264 loc) · 8.18 KB
/
webpack.config.base.ts
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
import chalk from 'chalk'
import CleanWebpackPlugin from 'clean-webpack-plugin'
const webpack = require('webpack')
import { RuleSetRule, DefinePlugin, Configuration } from 'webpack'
// @ts-ignore
import LiveReloadPlugin from 'webpack-livereload-plugin'
// @ts-ignore
import sassGlobImporter = require('node-sass-glob-importer')
import HtmlWebpackPlugin = require('html-webpack-plugin')
import MiniCSSExtractWebpackPlugin = require('mini-css-extract-plugin')
// import { RuleSetRule } from 'webpack'
const env = process.env.NODE_ENV === 'production' ? 'production' : 'development'
const args = process.argv.slice(2)
const liveReloadEnabled = !(args.includes('--no-livereload') || process.env.NO_LIVERELOAD)
const watchModeEnabled = args.includes('--watch') || args.includes('-w')
// opt out of livereload with arg --no-livereload
// eslint-disable-next-line no-console
if (liveReloadEnabled && watchModeEnabled) console.log(chalk.gray(`\nLive Reloading is enabled. use ${chalk.bold('--no-livereload')} to disable`))
process.env.NODE_ENV = env
// @ts-ignore
const evalDevToolPlugin = new webpack.EvalDevToolModulePlugin({
moduleFilenameTemplate: 'cypress://[namespace]/[resource-path]',
fallbackModuleFilenameTemplate: 'cypress://[namespace]/[resourcePath]?[hash]',
})
evalDevToolPlugin.evalDevToolPlugin = true
const optimization = {
usedExports: true,
providedExports: true,
sideEffects: true,
namedChunks: true,
namedModules: true,
removeAvailableModules: true,
mergeDuplicateChunks: true,
flagIncludedChunks: true,
removeEmptyChunks: true,
}
const stats = {
errors: true,
warningsFilter: /node_modules\/mocha\/lib\/mocha.js/,
warnings: true,
all: false,
builtAt: true,
colors: true,
modules: true,
maxModules: 20,
excludeModules: /(main|test-entry).scss/,
timings: true,
}
function makeSassLoaders ({ modules }: { modules: boolean }): RuleSetRule {
const exclude = [/node_modules/]
if (!modules) exclude.push(/\.modules?\.s[ac]ss$/i)
return {
test: modules ? /\.modules?\.s[ac]ss$/i : /\.s[ac]ss$/i,
exclude,
enforce: 'pre',
use: [
{
loader: require.resolve('css-modules-typescript-loader'),
options: {
modules: true,
mode: process.env.CI ? 'verify' : 'emit',
},
},
{
loader: require.resolve('css-loader'),
options: {
// sourceMap: true,
modules,
},
}, // translates CSS into CommonJS
{
loader: require.resolve('postcss-loader'),
options: {
plugins: [
require('autoprefixer')({ overrideBrowserslist: ['last 2 versions'], cascade: false }),
],
},
},
{
loader: require.resolve('resolve-url-loader'),
},
{
loader: require.resolve('sass-loader'),
options: {
implementation: require('sass'),
sourceMap: true,
sassOptions: {
importer: sassGlobImporter(),
},
},
}, // compiles Sass to CSS, using Node Sass by default
],
}
}
// the chrome version should be synced with
// npm/webpack-batteries-included-preprocessor/index.js and
// packages/server/lib/browsers/chrome.ts
const babelPresetEnvConfig = [require.resolve('@babel/preset-env'), { targets: { 'chrome': '64' } }]
const babelPresetTypeScriptConfig = [require.resolve('@babel/preset-typescript'), { allowNamespaces: true }]
export const getCommonConfig = () => {
const commonConfig: Configuration = {
mode: 'none',
node: {
fs: 'empty',
child_process: 'empty',
net: 'empty',
tls: 'empty',
module: 'empty',
},
resolve: {
extensions: ['.ts', '.js', '.jsx', '.tsx', '.scss', '.json'],
},
stats,
optimization,
module: {
rules: [
{
test: /\.(ts|js|jsx|tsx)$/,
exclude: /node_modules/,
use: {
loader: require.resolve('babel-loader'),
options: {
plugins: [
// "istanbul",
[require.resolve('@babel/plugin-proposal-decorators'), { legacy: true }],
[require.resolve('@babel/plugin-proposal-class-properties'), { loose: true }],
],
presets: [
babelPresetEnvConfig,
require.resolve('@babel/preset-react'),
babelPresetTypeScriptConfig,
],
babelrc: false,
},
},
},
{
test: /\.s?css$/,
exclude: /node_modules/,
use: [
{ loader: MiniCSSExtractWebpackPlugin.loader },
],
},
makeSassLoaders({ modules: false }),
makeSassLoaders({ modules: true }),
{
test: /\.(eot|svg|ttf|woff|woff2)$/,
use: [
{
loader: require.resolve('file-loader'),
options: {
name: './fonts/[name].[ext]',
},
},
],
},
{
test: /\.(png|gif)$/,
use: [
{
loader: require.resolve('file-loader'),
options: {
name: './img/[name].[ext]',
},
},
],
},
{
test: /\.wasm$/,
type: 'javascript/auto',
use: [
{
loader: require.resolve('arraybuffer-loader'),
},
],
},
],
},
plugins: [
new CleanWebpackPlugin({ cleanStaleWebpackAssets: false }),
new MiniCSSExtractWebpackPlugin(),
// Enable source maps / eval maps
// 'EvalDevtoolModulePlugin' is used in development
// because it is fast and maps to filenames while showing compiled source
// 'SourceMapDevToolPlugin' is used in production for the same reasons as 'eval', but it
// shows full source and does not cause crossorigin errors like 'eval' (in Chromium < 63)
// files will be mapped like: `cypress://../driver/cy/commands/click.coffee`
// other sourcemap options:
// [new webpack.SourceMapDevToolPlugin({
// moduleFilenameTemplate: 'cypress://[namespace]/[resource-path]',
// fallbackModuleFilenameTemplate: 'cypress://[namespace]/[resourcePath]?[hash]'
// })] :
...[
(env === 'production'
? new DefinePlugin({ 'process.env.NODE_ENV': JSON.stringify('production') })
: evalDevToolPlugin
),
],
...(liveReloadEnabled ? [new LiveReloadPlugin({ appendScriptTag: 'true', port: 0, hostname: 'localhost', protocol: 'http' })] : []),
],
cache: true,
}
return commonConfig
}
// eslint-disable-next-line @cypress/dev/arrow-body-multiline-braces
export const getSimpleConfig = () => ({
node: {
fs: 'empty',
child_process: 'empty',
net: 'empty',
tls: 'empty',
module: 'empty',
},
resolve: {
extensions: ['.js', '.ts', '.json'],
},
stats,
optimization,
cache: true,
module: {
rules: [
{
test: /\.(js|ts)$/,
exclude: /node_modules/,
use: {
loader: require.resolve('babel-loader'),
options: {
plugins: [
[require.resolve('@babel/plugin-proposal-class-properties'), { loose: true }],
],
presets: [
babelPresetEnvConfig,
babelPresetTypeScriptConfig,
],
babelrc: false,
},
},
},
// FIXME: we don't actually want or need wasm support in the
// cross origin bundle that uses this config, but we need to refactor
// the driver so that it doesn't load the wasm code in
// packages/driver/src/cypress/source_map_utils.js when creating
// the cross origin bundle. for now, this is necessary so the build
// doesn't fail
// https://github.com/cypress-io/cypress/issues/19888
{
test: /\.wasm$/,
type: 'javascript/auto',
use: [
{
loader: require.resolve('arraybuffer-loader'),
},
],
},
],
},
plugins: [
new CleanWebpackPlugin({ cleanStaleWebpackAssets: false }),
],
})
export { HtmlWebpackPlugin }
export function getCopyWebpackPlugin () {
return require('copy-webpack-plugin')
}