-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompiler.js
43 lines (39 loc) · 973 Bytes
/
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
import path from 'path'
import webpack from 'webpack'
import memoryfs from 'memory-fs'
import { webpackIdentity } from './src/const'
export default (fixture, { browser }) => {
const compiler = webpack({
mode: 'development',
entry: `${fixture}`,
output: {
path: path.resolve(__dirname),
filename: 'bundle.js',
},
resolve: {
modules: [path.resolve(__dirname, 'node_modules')]
},
module: {
rules: [
{
test: /\.css$/,
use: {
loader: browser ? 'css-loader/locals' : 'css-loader',
options: {
modules: true,
camelCase: true,
localIdentName: webpackIdentity,
}
}
}
]
}
})
compiler.outputFileSystem = new memoryfs()
return new Promise(( resolve, reject ) => {
compiler.run((err, stats) => {
if (err || stats.hasErrors()) reject(err)
return resolve(stats)
})
})
}