forked from fleetdm/fleet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
129 lines (121 loc) · 3.43 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
require('es6-promise').polyfill();
const path = require('path');
const webpack = require('webpack');
const bourbon = require('node-bourbon').includePaths;
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const WebpackNotifierPlugin = require('webpack-notifier');
const DEV_SOURCE_MAPS = 'eval-source-map';
var plugins = [
new webpack.NoEmitOnErrorsPlugin(),
new HtmlWebpackPlugin({
filename: '../frontend/templates/react.tmpl',
inject: false,
template: 'frontend/templates/react.ejs'
}),
new WebpackNotifierPlugin({
title: "Fleet",
contentImage: path.resolve("./assets/images/kolide-logo.svg"),
excludeWarnings: true
})
];
if (process.env.NODE_ENV === 'production') {
plugins = plugins.concat([
new webpack.DefinePlugin({
'process.env': {NODE_ENV: JSON.stringify('production')}
}),
new MiniCssExtractPlugin({ filename: 'bundle-[contenthash].css', allChunks: false })
]);
} else {
plugins = plugins.concat([
new MiniCssExtractPlugin({ filename: 'bundle.css', allChunks: false })
]);
}
var repo = __dirname
var config = {
mode: process.env.NODE_ENV,
entry: {
bundle: path.join(repo, 'frontend/index.jsx')
},
output: {
path: path.join(repo, 'assets/'),
publicPath: "/assets/",
filename: '[name].js'
},
devtool: process.env.NODE_ENV === 'development' ? DEV_SOURCE_MAPS : false,
plugins: plugins,
optimization: {
minimize: process.env.NODE_ENV == 'production',
},
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/,
rules: [
{ test: /\.(png|gif)$/, use: { loader: 'url-loader?name=[name]@[hash].[ext]&limit=6000' } },
{
test: /\.(pdf|ico|jpg|svg|eot|otf|woff|woff2|ttf|mp4|webm)$/,
use: {
loader: 'file-loader',
options: {
name: '[name]@[hash].[ext]',
useRelativePath: true,
},
},
},
{ test: /\.tsx?$/, exclude: /node_modules/, use: { loader: 'ts-loader' } },
{
test: /\.scss$/,
exclude: /node_modules/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: './',
hmr: process.env.NODE_ENV == 'development',
},
},
{ loader: 'css-loader' },
{ loader: 'postcss-loader' },
{
loader: 'sass-loader',
options: {
sourceMap: true,
includePaths: [ bourbon ]
}
},
{ loader: 'import-glob-loader' }
],
},
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
hmr: process.env.NODE_ENV == 'development',
},
},
'css-loader',
'postcss-loader'
],
},
{
test: /\.jsx?$/,
include: path.join(repo, 'frontend'),
use: [ 'babel-loader' ]
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.jsx', '.json'],
modules: [
path.resolve(path.join(repo, './frontend')),
"node_modules"
]
}
};
if (process.env.NODE_ENV === 'production') {
config.output.filename = "[name]-[hash].js"
}
module.exports = config;