fleet/webpack.config.js

102 lines
2.9 KiB
JavaScript
Raw Normal View History

require('es6-promise').polyfill();
var path = require('path');
var webpack = require('webpack');
var ExtractTextPlugin = require("extract-text-webpack-plugin");
2016-10-21 15:57:33 +00:00
var bourbon = require('node-bourbon').includePaths;
2017-01-19 15:24:10 +00:00
var HtmlWebpackPlugin = require('html-webpack-plugin');
2017-03-13 19:13:33 +00:00
var WebpackNotifierPlugin = require('webpack-notifier');
var plugins = [
2017-03-13 19:13:33 +00:00
new webpack.NoEmitOnErrorsPlugin(),
2017-01-19 15:24:10 +00:00
new HtmlWebpackPlugin({
filename: '../frontend/templates/react.tmpl',
inject: false,
2017-01-19 15:24:10 +00:00
template: 'frontend/templates/react.ejs'
2017-03-13 19:13:33 +00:00
}),
new WebpackNotifierPlugin({
title: "Kolide",
contentImage: path.resolve("./assets/images/kolide-logo.svg"),
excludeWarnings: true
2017-01-19 15:24:10 +00:00
})
];
2017-01-19 15:24:10 +00:00
if (process.env.NODE_ENV === 'production') {
plugins = plugins.concat([
new webpack.optimize.UglifyJsPlugin({
compress: {warnings: false},
output: {comments: false}
}),
new webpack.DefinePlugin({
'process.env': {NODE_ENV: JSON.stringify('production')}
}),
2017-03-13 19:13:33 +00:00
new ExtractTextPlugin({ filename: 'bundle-[contenthash].css', allChunks: false })
2017-01-19 15:24:10 +00:00
]);
} else {
plugins = plugins.concat([
2017-03-13 19:13:33 +00:00
new ExtractTextPlugin({ filename: 'bundle.css', allChunks: false })
2017-01-19 15:24:10 +00:00
]);
}
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: {
// The following noParse suppresses the warning about sqlite-parser being a
// pre-compiled JS file. See https://goo.gl/N4s6bB.
noParse: /node_modules\/sqlite-parser\/dist\/sqlite-parser-min.js/,
2017-03-13 19:13:33 +00:00
rules: [
{ test: /\.(png|gif)$/, use: { loader: 'url-loader?name=[name]@[hash].[ext]&limit=6000' } },
{ test: /\.(pdf|ico|jpg|svg|eot|otf|woff|ttf|mp4|webm)$/, use: { loader: 'file-loader?name=[name]@[hash].[ext]' } },
{ test: /\.json$/, use: { loader: 'raw-loader' } },
{ test: /\.tsx?$/, exclude: /node_modules/, use: { loader: 'ts-loader' } },
{
test: /\.scss$/,
exclude: /node_modules/,
2017-03-13 19:13:33 +00:00
use: ExtractTextPlugin.extract({ fallback: 'style-loader', use: [
{ loader: 'css-loader' },
{
loader: 'sass-loader',
options: {
sourceMap: true,
includePaths: [ bourbon ]
}
},
{ loader: 'import-glob-loader' }
]})
},
{
2016-10-21 15:57:33 +00:00
test: /\.css$/,
2017-03-13 19:13:33 +00:00
use: ExtractTextPlugin.extract({ fallback: 'style-loader', use: 'css-loader' })
},
{
test: /\.jsx?$/,
2016-08-10 15:31:27 +00:00
include: path.join(repo, 'frontend'),
2017-03-13 19:13:33 +00:00
use: [ 'babel-loader' ]
}
]
},
resolve: {
2017-03-13 19:13:33 +00:00
extensions: ['.js', '.jsx', '.json'],
modules: [
path.resolve(path.join(repo, './frontend')),
"node_modules"
]
}
};
2017-01-19 15:24:10 +00:00
if (process.env.NODE_ENV === 'production') {
config.output.filename = "[name]-[hash].js"
}
module.exports = config;