forked from chanind/cn-grammar-matcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
113 lines (110 loc) · 2.64 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
var path = require('path');
var webpack = require('webpack');
var Clean = require('clean-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var CopyWebpackPlugin = require('copy-webpack-plugin');
const output = process.env.OUTPUT || '/dist';
const MATCH_ALL_NON_RELATIVE_IMPORTS = /^\w.*$/i;
var config = [
{
entry: {
lib: path.resolve(__dirname, 'src/GrammarMatcher.js'),
},
externals: [MATCH_ALL_NON_RELATIVE_IMPORTS],
output: {
path: path.join(__dirname, output),
filename: 'GrammarMatcher.js',
library: 'cn-grammar-matcher',
libraryTarget: 'umd',
umdNamedDefine: true,
},
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
query: {
presets: ['stage-3'],
},
},
],
},
node: {
net: 'empty',
fs: 'empty',
tls: 'empty',
},
plugins: [
new Clean(['dist']),
new webpack.DefinePlugin({
'process.env': {
NLP_HOST: JSON.stringify(process.env.NLP_HOST),
},
}),
],
},
{
entry: {
demo: path.resolve(__dirname, 'demo/index.js'),
},
output: {
path: path.join(__dirname, output),
publicPath: '/',
filename: 'js/[name].js',
},
module: {
loaders: [
{
test: /\.jsx?$/,
loader: 'babel-loader',
query: {
presets: ['stage-3', 'react'],
},
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract(
'css-loader?sourceMap&modules&camelCase=dashes!sass-loader?sourceMap'
),
},
{
test: /\.(png|jpg)$/,
loader: 'url-loader?limit=5120',
},
],
},
node: {
net: 'empty',
fs: 'empty',
tls: 'empty',
},
externals: {
react: 'React',
'react-dom': 'ReactDOM',
},
resolve: {
alias: {
mods: path.resolve(__dirname, 'js', 'mods'),
css: path.resolve(__dirname, 'css'),
pics: path.resolve(__dirname, 'pics'),
},
},
devtool: 'source-map',
plugins: [
new webpack.DefinePlugin({
'process.env': {
NLP_HOST: JSON.stringify(process.env.NLP_HOST),
},
}),
new ExtractTextPlugin('css/[name].css'),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'demo/index.ejs',
chunks: ['demo'],
}),
new CopyWebpackPlugin([{ from: path.resolve(__dirname, 'demo/assets') }]),
],
},
];
module.exports = config;