-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (42 loc) · 1.34 KB
/
index.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
'use strict'
const path = require('path')
const fs = require('fs')
const webpack = require('webpack')
const merge = require('merge')
exports.name = 'webpack'
exports.outputFormat = 'json'
exports.renderFileAsync = function (filename, options, locals) {
// Create the promise which compiles with Webpack.
return new Promise((resolve, reject) => {
// Parse the file path.
const file = path.parse(filename)
// Construct the options array, cleansing the values.
options = options || {}
options.context = options.context || file.dir
options.context = fs.realpathSync(options.context)
options.entry = options.entry || './' + file.base
// Merge locals into options.
if (locals) {
options = merge(options, locals)
}
// Ensure the given path is absolute.
if (options.output && options.output.path) {
if (!path.isAbsolute(options.output.path)) {
options.output.path = fs.realpathSync(options.output.path)
}
}
// Compile with Webpack.
webpack(options, (error, stats) => {
// Check for hard compilation errors.
if (error) {
return reject(error)
}
// Check the soft compilation errors.
stats = stats.toJson()
if (stats.errors.length > 0) {
return reject(stats.errors)
}
return resolve(JSON.stringify(stats))
})
})
}