-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcompiler.js
52 lines (47 loc) · 1.12 KB
/
compiler.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
import Memoryfs from 'memory-fs'
import path from 'path'
import VueLoaderPlugin from 'vue-loader/lib/plugin'
import webpack from 'webpack'
export default (fixture, options = {}) => {
const compiler = webpack({
context: __dirname,
entry: `./${fixture}`,
output: {
path: path.resolve(__dirname),
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.vue$/,
use: [{ loader: 'vue-loader' }]
},
{
test: /\.vue$/,
enforce: 'post',
loader: path.resolve(__dirname, '../src/index.js'),
options
},
{
test: /\.vue.js$/,
enforce: 'post',
loader: path.resolve(__dirname, '../src/index.js'),
options
}
]
},
plugins: [new VueLoaderPlugin()]
})
compiler.outputFileSystem = new Memoryfs()
return new Promise((resolve, reject) => {
compiler.run((err, stats) => {
if (err) {
return reject(err)
}
if (stats.hasErrors()) {
return reject(new Error(stats.toJson().errors))
}
resolve(stats)
})
})
}