fleet/webpack.config.js

88 lines
2.3 KiB
JavaScript
Raw Normal View History

require('es6-promise').polyfill();
var path = require('path');
var webpack = require('webpack');
var autoprefixer = require('autoprefixer');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
2016-10-21 15:57:33 +00:00
var bourbon = require('node-bourbon').includePaths;
var plugins = [
new webpack.NoErrorsPlugin(),
new webpack.optimize.DedupePlugin(),
new ExtractTextPlugin("bundle.css", {allChunks: false})
];
if (process.env.NODE_ENV === 'production') {
plugins = plugins.concat([
new webpack.optimize.UglifyJsPlugin({
output: {comments: false},
test: /bundle\.js?$/
}),
new webpack.DefinePlugin({
'process.env': {NODE_ENV: JSON.stringify('production')}
})
]);
};
var repo = __dirname
2016-08-10 15:31:27 +00:00
var config = {
entry: {
2016-09-07 00:04:02 +00:00
bundle: path.join(repo, 'frontend/index.jsx')
},
output: {
path: path.join(repo, 'assets/'),
publicPath: "/assets/",
filename: '[name].js'
},
plugins: plugins,
module: {
loaders: [
2016-09-08 12:50:44 +00:00
{test: /\.(png|gif)$/, loader: 'url-loader?name=[name]@[hash].[ext]&limit=6000'},
{test: /\.(pdf|ico|jpg|svg|eot|otf|woff|ttf|mp4|webm)$/, loader: 'file-loader?name=[name]@[hash].[ext]'},
{test: /\.json$/, loader: 'raw-loader'},
2016-10-31 21:02:06 +00:00
{test: /\.tsx?$/, exclude: /node_modules/, loader: 'ts-loader'},
{
2016-10-21 15:57:33 +00:00
test: /\.css$/,
loader: ExtractTextPlugin.extract("style-loader", "css-loader!autoprefixer-loader")
},
2016-10-21 15:57:33 +00:00
{ test: /\.scss$/, loader: "style!css!sass?includePaths[]=" + bourbon + "!import-glob" },
{
test: /\.jsx?$/,
2016-08-10 15:31:27 +00:00
include: path.join(repo, 'frontend'),
loaders: ['babel']
}
]
},
resolve: {
extensions: ['', '.js', '.jsx', '.json'],
alias: {
2016-08-10 15:31:27 +00:00
'#app': path.join(repo, 'frontend'),
'#components': path.join(repo, 'frontend/components'),
},
root: [
path.resolve(path.join(repo, './frontend'))
]
},
svgo1: {
multipass: true,
plugins: [
// by default enabled
{mergePaths: false},
{convertTransform: false},
{convertShapeToPath: false},
{cleanupIDs: false},
{collapseGroups: false},
{transformsWithOnePath: false},
{cleanupNumericValues: false},
{convertPathData: false},
{moveGroupAttrsToElems: false},
// by default disabled
{removeTitle: true},
{removeDesc: true}
]
}
};
module.exports = config;