remove legacy code

This commit is contained in:
Kenny
2017-08-02 10:38:56 +02:00
parent 3e212655ae
commit 8ca88b583f
4 changed files with 10 additions and 15 deletions

View File

@@ -2,7 +2,6 @@ var path = require('path')
var webpack = require('webpack')
var ExtractTextPlugin = require('extract-text-webpack-plugin')
var HtmlWebpackPlugin = require('html-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')
var deepExtend = require('deep-extend')
const {gitDescribeSync} = require('git-describe')
@@ -77,11 +76,6 @@ module.exports = function(rules, options) {
plugins.push( new webpack.NoEmitOnErrorsPlugin())
} else { // development mode
plugins.push(
new HtmlWebpackPlugin({
template: 'dev-helpers/template.ejs',
})
)
plugins.push(new CopyWebpackPlugin([ { from: 'test/e2e/specs', to: 'test-specs' } ]))
}