forked from uber/react-digraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
106 lines (99 loc) · 2.38 KB
/
webpack.prod.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
const path = require('path');
const webpack = require('webpack');
const UglifyJSPlugin = require('uglifyjs-webpack-plugin');
module.exports = {
mode: 'production',
devtool: 'source-map',
context: __dirname + '/src',
entry: {
main: './index.js',
css: './styles/main.scss'
},
output: {
filename: '[name].min.js',
chunkFilename: '[name].min.js',
path: __dirname + '/dist',
publicPath: '/dist/',
library: 'ReactDigraph',
libraryTarget: 'commonjs2'
},
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: ['.ts', '.tsx', '.js', '.json']
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /(node_modules|bower_components)/,
enforce: 'pre',
loader: 'eslint-loader',
options: {
configFile: '.eslintrc',
}
},
{
test: /\.jsx?$/,
// Don't exclude the node_modules directory, otherwise the error is:
// [21:23:59] GulpUglifyError: unable to minify JavaScript
// Caused by: SyntaxError: Unexpected token: name (e)
// exclude: /(node_modules|bower_components)/,
use: [
{
loader: 'babel-loader',
options: {
babelrc: true
}
},
]
},
// All files with a '.ts' or '.tsx' extension will be handled by
// 'awesome-typescript-loader'.
{
test: /\.tsx?$/,
loader: 'awesome-typescript-loader'
},
// All scss files
{
test: /\.s?css$/,
use: [
{
loader: 'style-loader' // creates style nodes from JS strings
},
{
loader: 'css-loader' // translates CSS into CommonJS
},
{
loader: 'sass-loader' // compiles Sass to CSS
}
]
}
]
},
plugins: [
new UglifyJSPlugin({
sourceMap: true
}),
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
})
],
externals: {
// TODO: figure out how to deal with externals
react: {
amd: 'react',
root: 'react',
global: 'React',
commonjs: 'react',
commonjs2: 'react'
},
'react-dom': {
amd: 'react-dom',
root: 'react-dom',
global: 'ReactDOM',
commonjs: 'react-dom',
commonjs2: 'react-dom'
},
tslib: 'tslib'
}
};