forked from swiftlang/swift-docc-render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue-config-utils.js
141 lines (126 loc) · 4.5 KB
/
vue-config-utils.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
/**
* This source file is part of the Swift.org open source project
*
* Copyright (c) 2021 Apple Inc. and the Swift project authors
* Licensed under Apache License v2.0 with Runtime Library Exception
*
* See https://swift.org/LICENSE.txt for license information
* See https://swift.org/CONTRIBUTORS.txt for Swift project authors
*/
const fs = require('fs');
const path = require('path');
// eslint-disable-next-line import/no-extraneous-dependencies
const webpack = require('webpack');
const themeUtils = require('./theme-build-utils');
const { BannerPlugin, LICENSE_HEADER } = require('./license-header-built-files');
function addENVDefaults() {
if (typeof process.env.VUE_APP_TITLE === 'undefined') {
process.env.VUE_APP_TITLE = 'Documentation';
}
}
function baseGenerateCssOptions(config) {
const target = process.env.VUE_APP_TARGET;
const buildTarget = ['ide', 'default'].includes(target) ? target : 'default';
return {
extract: process.env.NODE_ENV === 'production' && {
ignoreOrder: true,
},
loaderOptions: {
scss: {
additionalData: `$build-target: '${buildTarget}'; $is-target-ide: $build-target == 'ide';`,
},
},
...config,
};
}
function baseChainWebpack(config) {
config.module
.rule('static-html-assets')
.test(/\.html$/)
.pre()
.include
.add(path.resolve(__dirname, '../assets/global-elements'))
.end()
.use('html-loader')
.loader('html-loader')
.end();
// Add theme fallback resolver
config.resolve.alias.set('theme', themeUtils.getThemePaths());
config.resolve.alias.set('docc-render', path.resolve(__dirname, '../'));
config.resolve.alias.set('highlight-js-alias', path.dirname(require.resolve('highlight.js/package.json')));
// Add license header to built files
config
.plugin('BannerPlugin')
.use(BannerPlugin, [{
banner: LICENSE_HEADER,
}]);
// Limit highlight.js to only the necessary languages
const builtinLanguages = 'bash|c|s?css|cpp|diff|http|java|llvm|perl|php|python|ruby|xml|javascript|json|markdown|objectivec|shell|swift';
const envLanguages = (process.env.VUE_APP_HLJS_LANGUAGES ?? '').split(',').join('|');
config
.plugin('LanguagesPlugin')
.use(webpack.ContextReplacementPlugin, [
/highlight\.js\/lib\/languages$/,
new RegExp(`^./(${[builtinLanguages, envLanguages].filter(Boolean).join('|')})\\.js$`),
]);
}
function baseDevServer({ defaultDevServerProxy = 'http://localhost:8000' } = {}) {
const devServerProxy = process.env.VUE_APP_DEV_SERVER_PROXY || defaultDevServerProxy;
// See https://cli.vuejs.org/config/#devserver for more details
const localFixtures = fs.existsSync(devServerProxy);
return localFixtures ? ({
// If `$VUE_APP_DEV_SERVER_PROXY` is a path that exists on the local
// filesystem, use its files to serve data and image requests
//
// Example: a .docc-build directory generated by `docc preview`
setupMiddlewares(middlewares, { app }) {
app.get(/^\/data\/diffs/, ({ path: documentPath, query: { changes } }, res) => {
const directory = path.dirname(documentPath);
const extension = path.extname(documentPath);
const baseName = path.basename(documentPath, extension);
// Encode the query parameter into the path to obtain a filesystem path.
//
// For example, /data/diffs/documentation/foo.json?changes=latest_minor gets converted to
// /data/diffs/documentation/foo-latest_minor.json
res.sendFile(path.join(devServerProxy, directory, `${baseName}-${changes}${extension}`));
});
app.get(/^\/(data|downloads|images|videos|index)/, (req, res) => {
res.sendFile(path.join(devServerProxy, req.path));
});
return middlewares;
},
}) : ({
// Otherwise, use the `$VUE_APP_DEV_SERVER_PROXY` value as an http endpoint
// to proxy data and image requests through
//
// Example: a localhost:[port] URL obtained from `docc preview`
proxy: {
'^/(data|downloads|images|videos|index)': {
target: devServerProxy,
},
},
});
}
const baseConfig = {
productionSourceMap: false,
transpileDependencies: ['swift-docc-render'],
};
function vueUtils({
chainWebpack = () => {},
devServerConfig,
cssConfig,
...config
} = {}) {
addENVDefaults();
return {
chainWebpack(conf) {
baseChainWebpack(conf);
chainWebpack(conf);
},
devServer: baseDevServer(devServerConfig),
css: baseGenerateCssOptions(cssConfig),
...baseConfig,
...config,
};
}
module.exports = vueUtils;