Initial work on 3.0 imports.

Decided to split journal imports to a separate file.
This commit is contained in:
willyb321
2018-03-22 16:22:59 +11:00
parent 83571b4bef
commit 5e1237390b
6 changed files with 255 additions and 5 deletions

View File

@@ -4,6 +4,7 @@ var webpack = require('webpack');
var pkgJson = require('./package');
var HtmlWebpackPlugin = require("html-webpack-plugin");
var ExtractTextPlugin = require("extract-text-webpack-plugin");
var WebpackNotifierPlugin = require('webpack-notifier');
function CopyDirPlugin(source, destination) {
this.source = source;
@@ -51,6 +52,7 @@ module.exports = {
disable: false,
allChunks: true
}),
new WebpackNotifierPlugin({alwaysNotify: true}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoEmitOnErrorsPlugin()
],