resolve conflicts with master

This commit is contained in:
d98762625 2018-11-23 10:54:16 +00:00
parent 0a6d0d1352
commit 97e5e44723
11 changed files with 189 additions and 30 deletions

View file

@ -1,5 +1,6 @@
const webpack = require("webpack");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const path = require("path");
/**
* Webpack configuration details for use with Grunt.
@ -58,13 +59,13 @@ module.exports = {
{
test: /\.m?js$/,
exclude: /node_modules\/(?!jsesc|crypto-api)/,
options: {
configFile: path.resolve(__dirname, "babel.config.js"),
cacheDirectory: true,
compact: false
},
type: "javascript/auto",
loader: "babel-loader?compact=false",
query: {
presets: [
require.resolve("@babel/preset-env"),
]
}
loader: "babel-loader",
},
{
test: /forge.min.js$/,