-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
createBaseConfig.js
308 lines (266 loc) Β· 7.77 KB
/
createBaseConfig.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
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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
'use strict'
/**
* Module dependencies.
*/
const { fs, path, logger, env } = require('@vuepress/shared-utils')
/**
* Expose createBaseConfig method.
*/
module.exports = function createBaseConfig ({
siteConfig,
sourceDir,
outDir,
base: publicPath,
themePath,
markdown,
tempPath,
cacheDirectory,
cacheIdentifier,
cliOptions: {
cache
},
pluginAPI
}, isServer) {
const Config = require('webpack-chain')
const { VueLoaderPlugin } = require('vue-loader')
const CSSExtractPlugin = require('mini-css-extract-plugin')
const isProd = process.env.NODE_ENV === 'production'
const inlineLimit = 10000
const config = new Config()
config
.mode(isProd && !env.isDebug ? 'production' : 'development')
.output
.path(outDir)
.filename(isProd ? 'assets/js/[name].[chunkhash:8].js' : 'assets/js/[name].js')
.publicPath(isProd ? publicPath : '/')
if (env.isDebug) {
config.devtool('source-map')
} else if (!isProd) {
config.devtool('cheap-module-eval-source-map')
}
const modulePaths = getModulePaths()
config.resolve
.set('symlinks', true)
.alias
.set('@theme', themePath)
.set('@source', sourceDir)
.set('@app', path.resolve(__dirname, '../app'))
.set('@temp', tempPath)
.set('@dynamic', path.resolve(tempPath, 'dynamic'))
.set('@internal', path.resolve(tempPath, 'internal'))
.end()
.extensions
.merge(['.js', '.jsx', '.vue', '.json', '.styl'])
.end()
.modules
.merge(modulePaths)
config.resolveLoader
.set('symlinks', true)
.modules
.merge(modulePaths)
config.module
.noParse(/^(vue|vue-router|vuex|vuex-router-sync)$/)
if (cache === false) {
logger.tip('Clean cache...\n')
fs.emptyDirSync(cacheDirectory)
}
cacheIdentifier += `isServer:${isServer}`
function applyVuePipeline (rule) {
rule
.use('cache-loader')
.loader('cache-loader')
.options({
cacheDirectory,
cacheIdentifier
})
rule
.use('vue-loader')
.loader('vue-loader')
.options({
compilerOptions: {
preserveWhitespace: true
},
cacheDirectory,
cacheIdentifier
})
}
const vueRule = config.module
.rule('vue')
.test(/\.vue$/)
applyVuePipeline(vueRule)
const mdRule = config.module
.rule('markdown')
.test(/\.md$/)
applyVuePipeline(mdRule)
mdRule
.use('markdown-loader')
.loader(require.resolve('@vuepress/markdown-loader'))
.options({ sourceDir, markdown })
config.module
.rule('pug')
.test(/\.pug$/)
.use('pug-plain-loader')
.loader('pug-plain-loader')
.end()
if (!siteConfig.evergreen) {
const libDir = path.join(__dirname, '..')
config.module
.rule('js')
.test(/\.js$/)
.exclude.add(filePath => {
// Always transpile lib directory
if (filePath.startsWith(libDir)) {
return false
}
// always transpile js in vue files
if (/\.vue\.js$/.test(filePath)) {
return false
}
// Don't transpile node_modules
return /node_modules/.test(filePath)
}).end()
.use('cache-loader')
.loader('cache-loader')
.options({
cacheDirectory,
cacheIdentifier
})
.end()
.use('babel-loader')
.loader('babel-loader')
.options({
// do not pick local project babel config (.babelrc)
babelrc: false,
// do not pick local project babel config (babel.config.js)
// ref: http://babeljs.io/docs/en/config-files
configFile: false,
presets: [
require.resolve('@vue/babel-preset-app')
]
})
}
config.module
.rule('images')
.test(/\.(png|jpe?g|gif)(\?.*)?$/)
.use('url-loader')
.loader('url-loader')
.options({
limit: inlineLimit,
name: `assets/img/[name].[hash:8].[ext]`
})
// do not base64-inline SVGs.
// https://github.com/facebookincubator/create-react-app/pull/1180
config.module
.rule('svg')
.test(/\.(svg)(\?.*)?$/)
.use('file-loader')
.loader('file-loader')
.options({
name: `assets/img/[name].[hash:8].[ext]`
})
config.module
.rule('media')
.test(/\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/)
.use('url-loader')
.loader('url-loader')
.options({
limit: inlineLimit,
name: `assets/media/[name].[hash:8].[ext]`
})
config.module
.rule('fonts')
.test(/\.(woff2?|eot|ttf|otf)(\?.*)?$/i)
.use('url-loader')
.loader('url-loader')
.options({
limit: inlineLimit,
name: `assets/fonts/[name].[hash:8].[ext]`
})
function createCSSRule (lang, test, loader, options) {
const baseRule = config.module.rule(lang).test(test)
const modulesRule = baseRule.oneOf('modules').resourceQuery(/module/)
const normalRule = baseRule.oneOf('normal')
applyLoaders(modulesRule, true)
applyLoaders(normalRule, false)
function applyLoaders (rule, modules) {
if (!isServer) {
if (isProd) {
rule.use('extract-css-loader').loader(CSSExtractPlugin.loader)
} else {
rule.use('vue-style-loader').loader('vue-style-loader')
}
}
rule.use('css-loader')
.loader(isServer ? 'css-loader/locals' : 'css-loader')
.options({
modules,
localIdentName: `[local]_[hash:base64:8]`,
importLoaders: 1,
sourceMap: !isProd
})
rule.use('postcss-loader').loader('postcss-loader').options(Object.assign({
plugins: [require('autoprefixer')],
sourceMap: !isProd
}, siteConfig.postcss))
if (loader) {
rule.use(loader).loader(loader).options(options)
}
}
}
createCSSRule('css', /\.css$/)
createCSSRule('postcss', /\.p(ost)?css$/)
createCSSRule('scss', /\.scss$/, 'sass-loader', siteConfig.scss)
createCSSRule('sass', /\.sass$/, 'sass-loader', Object.assign({ indentedSyntax: true }, siteConfig.sass))
createCSSRule('less', /\.less$/, 'less-loader', siteConfig.less)
createCSSRule('stylus', /\.styl(us)?$/, 'stylus-loader', Object.assign({
preferPathResolver: 'webpack'
}, siteConfig.stylus))
config
.plugin('vue-loader')
.use(VueLoaderPlugin)
if (isProd && !isServer) {
config
.plugin('extract-css')
.use(CSSExtractPlugin, [{
filename: 'assets/css/styles.[chunkhash:8].css'
}])
// ensure all css are extracted together.
// since most of the CSS will be from the theme and very little
// CSS will be from async chunks
config.optimization.splitChunks({
cacheGroups: {
styles: {
name: 'styles',
// necessary to ensure async chunks are also extracted
test: m => {
return /css\/mini-extract/.test(m.type)
},
chunks: 'all',
enforce: true
}
}
})
}
// inject constants
config
.plugin('injections')
.use(require('webpack/lib/DefinePlugin'), [{
VUEPRESS_VERSION: JSON.stringify(require('../../package.json').version),
VUEPRESS_TEMP_PATH: JSON.stringify(tempPath),
LAST_COMMIT_HASH: JSON.stringify(getLastCommitHash())
}])
pluginAPI.options.define.apply(config)
pluginAPI.options.alias.apply(config)
return config
}
function getLastCommitHash () {
const spawn = require('cross-spawn')
let hash
try {
hash = spawn.sync('git', ['log', '-1', '--format=%h']).stdout.toString('utf-8').trim()
} catch (error) {}
return hash
}
function getModulePaths () {
return [path.resolve(process.cwd(), 'node_modules')].concat(module.paths)
}