Lint files

This commit is contained in:
Boris Kubiak 2018-01-27 13:38:00 +01:00
parent c557ec5611
commit aec85c7c68

View file

@ -1,79 +1,79 @@
const path = require('path'); const path = require('path');
const webpack = require('webpack'); const webpack = require('webpack');
const ExtractTextPlugin = require("extract-text-webpack-plugin"); const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = { module.exports = {
entry: { entry: {
index: './src/main.js' index: './src/main.js'
}, },
output: { output: {
path: path.resolve(__dirname, './dist'), path: path.resolve(__dirname, './dist'),
publicPath: '/dist/', publicPath: '/dist/',
filename: '[name].js' filename: '[name].js'
}, },
module: { module: {
rules: [ rules: [
{ {
test: /\.vue$/, test: /\.vue$/,
loader: 'vue-loader', loader: 'vue-loader',
options: { options: {
extractCSS: true, extractCSS: true
} }
}, },
{ {
test: /vanity\.js$/, test: /vanity\.js$/,
loader: 'worker-loader', loader: 'worker-loader',
exclude: /node_modules/, exclude: /node_modules/,
options: { options: {
inline: true, inline: true,
name: '[name].[ext]?[hash]' name: '[name].[ext]?[hash]'
} }
}, },
{ {
test: /\.js$/, test: /\.js$/,
loader: 'babel-loader', loader: 'babel-loader',
exclude: /node_modules/ exclude: /node_modules/
}, },
{ {
test: /\.(png|woff2)/, test: /\.(png|woff2)/,
exclude: /node_modules/, exclude: /node_modules/,
loader: 'url-loader', loader: 'url-loader'
} }
] ]
}, },
plugins: [ plugins: [
new ExtractTextPlugin("style.css") new ExtractTextPlugin('style.css')
], ],
resolve: { resolve: {
alias: { alias: {
vue$: 'vue/dist/vue.esm.js' vue$: 'vue/dist/vue.esm.js'
}, },
extensions: ['*', '.js', '.vue', '.json'] extensions: ['*', '.js', '.vue', '.json']
}, },
devServer: { devServer: {
historyApiFallback: true, historyApiFallback: true,
noInfo: true, noInfo: true,
overlay: true overlay: true
}, },
performance: { performance: {
hints: false hints: false
}, }
}; };
if (process.env.NODE_ENV === 'production') { if (process.env.NODE_ENV === 'production') {
// http://vue-loader.vuejs.org/en/workflow/production.html // http://vue-loader.vuejs.org/en/workflow/production.html
module.exports.plugins = (module.exports.plugins || []).concat([ module.exports.plugins = (module.exports.plugins || []).concat([
new webpack.DefinePlugin({ new webpack.DefinePlugin({
'process.env': {NODE_ENV: '"production"'} 'process.env': {NODE_ENV: '"production"'}
}), }),
new webpack.optimize.UglifyJsPlugin({ new webpack.optimize.UglifyJsPlugin({
sourceMap: false, sourceMap: false,
compress: { compress: {
warnings: false warnings: false
} }
}), }),
new webpack.LoaderOptionsPlugin({ new webpack.LoaderOptionsPlugin({
minimize: true minimize: true
}) })
]); ]);
} }