-
Notifications
You must be signed in to change notification settings - Fork 471
/
vue.config.js
234 lines (201 loc) · 6.1 KB
/
vue.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
const fs = require('fs');
const path = require('path');
// eslint-disable-next-line import/no-extraneous-dependencies
const webpack = require('webpack');
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');
const distDir = path.resolve(__dirname, 'dist');
const assetsDir = path.resolve(__dirname, 'src/assets');
const PACKAGE_VERSION = require('./package.json').version;
/*
favicon.png and logo.png variables
Normally, the custom favicon.png and logo.png images should go in the
`public` directory. However, for backwards compatibility with the older
vue cli setup, you can alterantively place them in the `src/assets` dir.
These images are copied from the `src/assets` directory to the `dist` dir
during build.
NOTE: if you place the images both in the `src/assets` and `public` dir, the
`public` dir will have precedence.
If there are no custom images, the build defaults use the flower icon
from the material design icons library
*/
const favIconPath = `${assetsDir}/favicon.png`;
const logoPath = `${assetsDir}/logo.png`;
const flowerLogoPath = path.resolve(
__dirname,
'node_modules/material-design-icons/maps/2x_web/ic_local_florist_white_18dp.png',
);
// HTML page title injected into index.html by webpack
const pageTitle = 'Lex Web UI';
const buildType = {
isLib: (process.env.BUILD_TARGET === 'lib'),
isApp: (process.env.BUILD_TARGET === 'app'),
isProd: (process.env.NODE_ENV === 'production'),
isDev: (process.env.NODE_ENV === 'development'),
};
function getAssetPath(filePath, defaultPath) {
const fileExists = fs.existsSync(filePath);
return fileExists ? filePath : defaultPath;
}
function chainWebpackWorker(config, destDir = '', srcDir = 'src/lib') {
const workerBaseDir = (destDir) ? `${destDir}/` : '';
const workerBaseFilename = `${workerBaseDir}[name]`;
const workerFilename = (buildType.isProd)
? `${workerBaseFilename}.min.js` : `${workerBaseFilename}.js`;
// configure worker loader
config.module
.rule('worker')
.test(/-worker\.js$/)
.include
.add(path.resolve(__dirname, srcDir))
.end()
.use('worker-loader')
.loader('worker-loader')
.options({
filename: workerFilename,
// generate a fallback js file for compatibility with older browsers
inline: 'fallback',
});
// exclude worker from regular js loader
config.module.rule('js').exclude.add(/-worker\.js$/).end();
// use Babel in worker
config.module
.rule('babel-worker')
.test(/-worker\.js$/)
.use('babel-loader')
.loader('babel-loader')
.end();
// custom components
config.module
.rule('vue')
.use('vue-loader');
}
function chainWebpackCommon(config, destDir) {
config.optimization.minimize(buildType.isProd);
config.optimization.minimizer('terser')
.tap((args) => {
// eslint-disable-next-line no-param-reassign
args[0].terserOptions.compress.drop_console = buildType.isProd;
return args;
})
.end();
config.devtool(buildType.isProd ? false : 'source-map');
chainWebpackWorker(config, destDir);
config.plugin('define')
.tap((args) => {
// eslint-disable-next-line no-param-reassign
args[0]['process.env'].PACKAGE_VERSION = `"${PACKAGE_VERSION}"`;
return args;
})
.end();
config.plugin('define').tap((definitions) => {
Object.assign(definitions[0], {
__VUE_OPTIONS_API__: 'true',
__VUE_PROD_DEVTOOLS__: 'false',
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: 'false'
})
return definitions
})
config.plugin('NodePolyfillPlugin').use(new NodePolyfillPlugin());
}
function chainWebpackLib(
config,
entryName = 'lex-web-ui',
entryFileName = './src/lex-web-ui.js',
destDir = 'bundle',
libraryName = 'LexWebUi',
format = 'umd',
) {
const baseFilename = `${destDir}/${entryName}`;
const filename = (buildType.isProd)
? `${baseFilename}.min.js` : `${baseFilename}.js`;
config
.entry(entryName)
.add(entryFileName)
.end()
.output
.libraryTarget(format)
.library(libraryName)
.filename(filename);
chainWebpackCommon(config, destDir);
config.externals([
{ 'vue': 'Vue' },
{'vuex': 'Vuex'},
'vue-router',
{'vuetify': 'Vuetify'},
/^aws-sdk\/.+$/,
]);
config.externalsType = 'window';
config.optimization.splitChunks({
cacheGroups: {
default: false,
},
});
config.optimization.runtimeChunk(false);
if (config.plugins.has('extract-css')) {
config
.plugin('extract-css')
.tap((args) => {
const cssFilename = (buildType.isProd)
? `${baseFilename}.min.css` : `${baseFilename}.css`;
// eslint-disable-next-line no-param-reassign
args[0].filename = cssFilename;
return args;
})
.end();
}
if (config.plugins.has('html')) {
config
.plugin('html')
.tap((args) => {
// eslint-disable-next-line no-param-reassign
args[0].filename = (buildType.isProd)
? `${destDir}/index.min.html` : `${destDir}/index.html`;
return args;
})
.end();
}
config.plugin('define')
.tap((args) => {
// eslint-disable-next-line no-param-reassign
args[0]['process.env'].BUILD_TARGET = `"${process.env.BUILD_TARGET}"`;
return args;
})
.end();
config.plugin('banner')
.use(webpack.BannerPlugin, [{
banner: `/*!
* lex-web-ui v${PACKAGE_VERSION}
* (c) 2017-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* Released under the Amazon Software License.
*/ `,
raw: true,
entryOnly: true,
exclude: /[\\/]node_modules[\\/]/,
}]);
}
function chainWebpackApp(
config,
entryName = 'lex-web-ui',
entryFileName = './src/lex-web-ui.js',
destDir = ''
) {
config
.entry(entryName)
.add(entryFileName);
config.output.filename(
(buildType.isProd) ? '[name].min.js' : '[name].js',
);
chainWebpackCommon(config, destDir);
config
.plugin('html')
// set title in html file
.tap((args) => {
// eslint-disable-next-line no-param-reassign
args[0].title = pageTitle;
return args;
})
.end()
}
module.exports = {
chainWebpack: (buildType.isLib) ? chainWebpackLib : chainWebpackApp,
};