-
Notifications
You must be signed in to change notification settings - Fork 14
/
webpack.config.js
87 lines (84 loc) · 1.92 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
'use strict';
const webpack = require('webpack');
const path = require('path');
// Plugins
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const __PROD__ = process.env.NODE_ENV === 'production';
const __DEV__ = !__PROD__;
module.exports = {
devtool: false,
entry: {
'emoji-panel': [
'./src/emoji-panel.js',
'./src/emoji-panel.scss'
],
example: [
'./example/example.js',
'./example/example.scss'
]
},
output: {
path: path.join(__dirname, 'dist'),
filename: `[name]${__PROD__ ? '.min' : ''}.js`,
publicPath: ''
},
plugins: [
new ExtractTextPlugin(`[name]${__PROD__ ? '.min' : ''}.css`),
new webpack.DefinePlugin({
__PROD__: JSON.stringify(__PROD__),
__DEV__: JSON.stringify(__DEV__),
'process.env': {
NODE_ENV: JSON.stringify(__PROD__ ? 'production' : 'development')
}
})
].concat(__PROD__ ? [
new webpack.optimize.UglifyJsPlugin({
output: {
comments: false
},
compress: {
warnings: false
},
sourceMap: false
})
] : []),
module: {
preLoaders: [
{
test: /\.json$/,
loader: 'json'
}
],
loaders: [
{
test: /\.js$/,
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'example')
],
loader: 'babel',
query: {
presets: ['es2015']
}
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract('style', 'css!sass')
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract('style', 'css')
},
{
test: /\.(png|ttf)$/,
loader: 'url?limit=20000&name=./asset/[hash].[ext]'
}
]
},
resolve: {
alias: {
'emoji-panel': path.join(__dirname, 'src', 'emoji-panel.js'),
'emoji-panel.css': path.join(__dirname, 'src', 'emoji-panel.scss')
}
}
};