1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

write files even on error

This commit is contained in:
nkzawa 2016-10-18 23:14:00 +09:00
parent f2d456b986
commit 400b75658b

View file

@ -27,7 +27,10 @@ export default async function createCompiler (dir, { hotReload = false } = {}) {
compress: { warnings: false },
sourceMap: false
}),
new WriteFilePlugin({ log: false })
new WriteFilePlugin({
exitOnErrors: false,
log: false
})
]
const babelRuntimePath = require.resolve('babel-runtime/package')