forked from spinnaker/deck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
264 lines (250 loc) · 10.1 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
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
const fs = require('fs');
const path = require('path');
const md5 = require('md5');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const { TypedCssModulesPlugin } = require('typed-css-modules-webpack-plugin');
const webpack = require('webpack');
const CACHE_INVALIDATE = getCacheInvalidateString();
const NODE_MODULE_PATH = path.join(__dirname, 'node_modules');
const SETTINGS_PATH = process.env.SETTINGS_PATH || './settings.js';
const THREADS = getThreadLoaderThreads();
// Used to fail CI for PRs which contain linter errors
const ESLINT_FAIL_ON_ERROR = process.env.ESLINT_FAIL_ON_ERROR === 'true';
function configure(env, webpackOpts) {
const WEBPACK_MODE = (webpackOpts && webpackOpts.mode) || 'development';
const IS_PRODUCTION = WEBPACK_MODE === 'production';
const IS_CI = !!process.env.TRAVIS || !!process.env.GITHUB_ACTIONS;
const DISPLAY_PROGRESS = process.stdout.isTTY && !IS_CI;
// eslint-disable-next-line no-console
console.log('Webpack mode: ' + WEBPACK_MODE);
const plugins = [
new TypedCssModulesPlugin({ globPattern: '**/*.module.css' }),
new ForkTsCheckerWebpackPlugin({ checkSyntacticErrors: true }),
new CopyWebpackPlugin([
{ from: `${NODE_MODULE_PATH}/@spinnaker/styleguide/public/styleguide.html`, to: `./styleguide.html` },
{ from: `./plugin-manifest.json`, to: `./plugin-manifest.json` },
]),
new HtmlWebpackPlugin({
title: 'Spinnaker',
template: './app/index.deck',
favicon: process.env.NODE_ENV === 'production' ? 'app/prod-favicon.ico' : 'app/dev-favicon.ico',
inject: true,
hash: IS_PRODUCTION,
}),
];
if (DISPLAY_PROGRESS) {
plugins.push(new webpack.ProgressPlugin({ profile: false }));
}
const config = {
context: __dirname,
mode: WEBPACK_MODE,
stats: 'errors-only',
watch: process.env.WATCH === 'true',
entry: {
settings: SETTINGS_PATH,
'settings-local': './settings-local.js',
app: './app/scripts/app.ts',
},
output: {
path: path.join(__dirname, 'build', 'webpack', process.env.SPINNAKER_ENV || ''),
filename: '[name].js',
},
devtool: IS_PRODUCTION ? 'source-map' : 'eval',
optimization: {
splitChunks: {
chunks: 'all', // enables splitting of both initial and async chunks
maxInitialRequests: 20, // allows up to 10 initial chunks
cacheGroups: {
// Put code matching each regexp in a separate chunk
core: new RegExp('/app/scripts/modules/core/'),
providers: new RegExp('/app/scripts/modules/(?!core)[^/]+/'),
vendor_A_F: new RegExp('node_modules/[a-fA-F]'),
vendor_G_O: new RegExp('node_modules/[g-oG-O]'),
vendor_P_Q: new RegExp('node_modules/[^a-oA-Or-zR-Z]'),
vendor_R_Z: new RegExp('node_modules/[r-zR-Z]'),
},
},
minimizer: IS_PRODUCTION
? [
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: true,
terserOptions: {
ecma: 6,
mangle: false,
output: {
comments: /webpackIgnore/,
},
},
}),
]
: [], // Disable minification unless production
},
resolve: {
extensions: ['.json', '.ts', '.tsx', '.js', '.jsx', '.css', '.less', '.html'],
modules: [NODE_MODULE_PATH, path.join(__dirname, 'app', 'scripts', 'modules')],
alias: {
root: __dirname,
core: path.join(__dirname, 'app', 'scripts', 'modules', 'core', 'src'),
'@spinnaker/core': path.join(__dirname, 'app', 'scripts', 'modules', 'core', 'src'),
docker: path.join(__dirname, 'app', 'scripts', 'modules', 'docker', 'src'),
'@spinnaker/docker': path.join(__dirname, 'app', 'scripts', 'modules', 'docker', 'src'),
amazon: path.join(__dirname, 'app', 'scripts', 'modules', 'amazon', 'src'),
'@spinnaker/amazon': path.join(__dirname, 'app', 'scripts', 'modules', 'amazon', 'src'),
google: path.join(__dirname, 'app', 'scripts', 'modules', 'google', 'src'),
'@spinnaker/google': path.join(__dirname, 'app', 'scripts', 'modules', 'google', 'src'),
kubernetes: path.join(__dirname, 'app', 'scripts', 'modules', 'kubernetes', 'src'),
'@spinnaker/kubernetes': path.join(__dirname, 'app', 'scripts', 'modules', 'kubernetes', 'src'),
ecs: path.join(__dirname, 'app', 'scripts', 'modules', 'ecs', 'src'),
'@spinnaker/ecs': path.join(__dirname, 'app', 'scripts', 'modules', 'ecs', 'src'),
huaweicloud: path.join(__dirname, 'app', 'scripts', 'modules', 'huaweicloud', 'src'),
'@spinnaker/huaweicloud': path.join(__dirname, 'app', 'scripts', 'modules', 'huaweicloud', 'src'),
coreImports: path.resolve(
__dirname,
'app',
'scripts',
'modules',
'core',
'src',
'presentation',
'less',
'imports',
'commonImports.less',
),
appengine: path.join(__dirname, 'app', 'scripts', 'modules', 'appengine', 'src'),
'@spinnaker/appengine': path.join(__dirname, 'app', 'scripts', 'modules', 'appengine', 'src'),
oracle: path.join(__dirname, 'app', 'scripts', 'modules', 'oracle', 'src'),
'@spinnaker/oracle': path.join(__dirname, 'app', 'scripts', 'modules', 'oracle', 'src'),
cloudfoundry: path.join(__dirname, 'app', 'scripts', 'modules', 'cloudfoundry', 'src'),
'@spinnaker/cloudfoundry': path.join(__dirname, 'app', 'scripts', 'modules', 'cloudfoundry', 'src'),
titus: path.join(__dirname, 'app', 'scripts', 'modules', 'titus', 'src'),
'@spinnaker/titus': path.join(__dirname, 'app', 'scripts', 'modules', 'titus', 'src'),
azure: path.join(__dirname, 'app', 'scripts', 'modules', 'azure', 'src'),
'@spinnaker/azure': path.join(__dirname, 'app', 'scripts', 'modules', 'azure', 'src'),
tencentcloud: path.join(__dirname, 'app', 'scripts', 'modules', 'tencentcloud', 'src'),
'@spinnaker/tencentcloud': path.join(__dirname, 'app', 'scripts', 'modules', 'tencentcloud', 'src'),
},
},
module: {
rules: [
{
test: /settings\.js/,
use: [{ loader: 'envify-loader' }],
},
{
test: /\.js$/,
use: [
{ loader: 'cache-loader', options: { cacheIdentifier: CACHE_INVALIDATE } },
{ loader: 'thread-loader', options: { workers: THREADS } },
{ loader: 'babel-loader' },
{ loader: 'eslint-loader', options: { failOnError: ESLINT_FAIL_ON_ERROR } },
],
exclude: /(node_modules(?!\/clipboard)|settings\.js)/,
},
{
test: /\.tsx?$/,
use: [
{ loader: 'cache-loader', options: { cacheIdentifier: CACHE_INVALIDATE } },
{ loader: 'thread-loader', options: { workers: THREADS } },
{ loader: 'ts-loader', options: { happyPackMode: true } },
{ loader: 'eslint-loader', options: { failOnError: ESLINT_FAIL_ON_ERROR } },
],
exclude: /node_modules/,
},
{
test: /\.less$/,
use: [
{ loader: 'style-loader' },
{ loader: 'css-loader' },
{ loader: 'postcss-loader' },
{ loader: 'less-loader' },
],
},
{
test: /\.css$/,
exclude: /\.module\.css$/,
use: [{ loader: 'style-loader' }, { loader: 'css-loader' }, { loader: 'postcss-loader' }],
},
{
test: /\.module\.css$/i,
use: [
{ loader: 'style-loader' },
{
loader: 'css-loader',
options: {
modules: true,
localIdentName: '[name]__[local]--[hash:base64:8]',
},
},
{ loader: 'postcss-loader' },
],
},
{
test: /\.svg$/,
issuer: {
test: /\.(tsx?|js)$/,
},
use: [{ loader: '@svgr/webpack' }],
exclude: /node_modules/,
},
{
test: /\.html$/,
use: [{ loader: 'ngtemplate-loader?relativeTo=' + path.resolve(__dirname) + '/' }, { loader: 'html-loader' }],
},
{
test: /\.(woff|woff2|otf|ttf|eot|png|gif|ico|svg)$/,
use: [{ loader: 'file-loader', options: { name: '[name].[hash:5].[ext]' } }],
},
{
test: require.resolve('jquery'),
use: [{ loader: 'expose-loader?$' }, { loader: 'expose-loader?jQuery' }],
},
{
test: /ui-sortable/,
use: ['imports-loader?$UI=jquery-ui/ui/widgets/sortable'],
},
],
},
plugins,
devServer: {
disableHostCheck: true,
port: process.env.DECK_PORT || 9000,
host: process.env.DECK_HOST || 'localhost',
https: process.env.DECK_HTTPS === 'true',
stats: 'errors-only',
},
externals: {
'react/addons': 'react',
'react/lib/ExecutionEnvironment': 'react',
'react/lib/ReactContext': 'react',
},
};
if (process.env.DECK_CERT) {
config.devServer.cert = fs.readFileSync(process.env.DECK_CERT);
config.devServer.key = fs.readFileSync(process.env.DECK_KEY);
if (process.env.DECK_CA_CERT) {
config.devServer.ca = fs.readFileSync(process.env.DECK_CA_CERT);
}
}
return config;
}
// invalidate cache-loader cache when these change
function getCacheInvalidateString() {
return JSON.stringify({
YARN_LOCK: md5(fs.readFileSync('yarn.lock')),
WEBPACK_CONFIG: md5(fs.readFileSync(__filename)),
});
}
function getThreadLoaderThreads() {
const cpus = require('os').cpus().length;
const physicalCpus = require('physical-cpu-count');
const threads = process.env.THREADS || (physicalCpus > 3 ? 2 : 1);
// eslint-disable-next-line no-console
console.log(`INFO: cpus: ${cpus} physical: ${physicalCpus} thread-loader threads: ${threads}`);
return threads;
}
module.exports = configure;