-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
/
Copy pathcompile-with-webpack.ts
73 lines (67 loc) · 1.85 KB
/
compile-with-webpack.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
import path from 'path'
import webpack from 'webpack'
import MemoryFS from 'memory-fs'
import { RenderOptions } from 'server/create-renderer'
import { createBundleRenderer } from 'server/index'
import VueSSRServerPlugin from 'server/webpack-plugin/server'
export function compileWithWebpack(
file: string,
extraConfig?: webpack.Configuration
) {
const config: webpack.Configuration = {
mode: 'development',
entry: path.resolve(__dirname, 'fixtures', file),
module: {
rules: [
{
test: /async-.*\.js$/,
loader: require.resolve('./async-loader')
},
{
test: /\.(png|woff2|css)$/,
loader: require.resolve('file-loader'),
options: {
name: '[name].[ext]'
}
}
]
}
}
if (extraConfig) {
Object.assign(config, extraConfig)
}
const compiler = webpack(config)
const fs = new MemoryFS()
compiler.outputFileSystem = fs
return new Promise<MemoryFS>((resolve, reject) => {
compiler.run(err => {
if (err) {
reject(err)
} else {
resolve(fs)
}
})
})
}
export async function createWebpackBundleRenderer(
file: string,
options?: RenderOptions & { asBundle?: boolean }
) {
const asBundle = !!(options && options.asBundle)
if (options) delete options.asBundle
const fs = await compileWithWebpack(file, {
target: 'node',
devtool: asBundle ? 'source-map' : false,
output: {
path: '/',
filename: 'bundle.js',
libraryTarget: 'commonjs2'
},
externals: [require.resolve('../../../dist/vue.runtime.common.js')],
plugins: asBundle ? [new VueSSRServerPlugin()] : []
})
const bundle = asBundle
? JSON.parse(fs.readFileSync('/vue-ssr-server-bundle.json', 'utf-8'))
: fs.readFileSync('/bundle.js', 'utf-8')
return createBundleRenderer(bundle, options)
}