2016-10-07 15:05:23 +00:00
|
|
|
var webpack = require('webpack');
|
|
|
|
var path = require('path');
|
|
|
|
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
|
|
|
|
|
|
|
module.exports = {
|
2016-10-08 15:04:19 +00:00
|
|
|
plugins: [
|
|
|
|
new webpack.ProvidePlugin({
|
|
|
|
'_': 'lodash',
|
|
|
|
Visibility: "visibilityjs",
|
|
|
|
Cookies: "js-cookie",
|
|
|
|
emojify: "emojify.js",
|
|
|
|
io: "socket.io-client",
|
2016-10-11 06:52:45 +00:00
|
|
|
key: "keymaster"
|
2016-10-08 15:04:19 +00:00
|
|
|
}),
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
"require.specified": "require.resolve"
|
2016-10-09 10:08:46 +00:00
|
|
|
}),
|
2016-10-11 04:30:30 +00:00
|
|
|
new ExtractTextPlugin("[name].css"),
|
|
|
|
new webpack.optimize.CommonsChunkPlugin({
|
|
|
|
name: "vendor",
|
|
|
|
filename: "vendor.bundle.js",
|
|
|
|
minChunks: Infinity,
|
|
|
|
})
|
2016-10-08 15:04:19 +00:00
|
|
|
],
|
2016-10-07 15:05:23 +00:00
|
|
|
|
2016-10-08 15:04:19 +00:00
|
|
|
entry: {
|
2016-10-09 13:47:29 +00:00
|
|
|
index: path.join(__dirname, 'public/js/index.js'),
|
2016-10-10 00:25:35 +00:00
|
|
|
public: path.join(__dirname, 'public/js/public.js'),
|
2016-10-10 02:14:17 +00:00
|
|
|
slide: path.join(__dirname, 'public/js/slide.js'),
|
2016-10-11 04:30:30 +00:00
|
|
|
locale: path.join(__dirname, 'public/js/locale.js'),
|
|
|
|
vendor: [
|
|
|
|
"expose?$!expose?jQuery!jquery",
|
|
|
|
"jquery-textcomplete",
|
|
|
|
"jquery-mousewheel",
|
|
|
|
"jquery-scrollspy/jquery-scrollspy",
|
2016-10-11 06:52:45 +00:00
|
|
|
"expose?LZString!lz-string",
|
|
|
|
"expose?filterXSS!xss",
|
|
|
|
"expose?Viz!viz.js",
|
|
|
|
"js-url",
|
2016-10-11 04:30:30 +00:00
|
|
|
"bootstrap"
|
|
|
|
]
|
2016-10-08 15:04:19 +00:00
|
|
|
},
|
2016-10-07 15:05:23 +00:00
|
|
|
|
2016-10-08 15:04:19 +00:00
|
|
|
output: {
|
2016-10-09 10:08:46 +00:00
|
|
|
path: path.join(__dirname, 'public/build'),
|
2016-10-08 15:04:19 +00:00
|
|
|
filename: '[name].js'
|
|
|
|
},
|
2016-10-07 15:05:23 +00:00
|
|
|
|
2016-10-08 15:04:19 +00:00
|
|
|
resolve: {
|
|
|
|
root: [
|
|
|
|
path.resolve(__dirname, 'src'),
|
|
|
|
path.resolve(__dirname, 'node_modules')
|
|
|
|
],
|
|
|
|
extensions: ["", ".js"],
|
|
|
|
alias: {
|
|
|
|
'jquery-ui': 'jquery-ui/ui/widgets'
|
|
|
|
}
|
|
|
|
},
|
2016-10-07 15:05:23 +00:00
|
|
|
|
2016-10-08 15:04:19 +00:00
|
|
|
module: {
|
|
|
|
loaders: [{
|
|
|
|
test: /\.json$/,
|
|
|
|
loader: 'json-loader'
|
|
|
|
}, {
|
|
|
|
test: /\.css$/,
|
2016-10-09 10:08:46 +00:00
|
|
|
loader: ExtractTextPlugin.extract('style-loader', 'css-loader')
|
2016-10-10 00:25:35 +00:00
|
|
|
}, {
|
2016-10-08 15:04:19 +00:00
|
|
|
test: /\.scss$/,
|
2016-10-09 10:08:46 +00:00
|
|
|
loader: ExtractTextPlugin.extract('style-loader', 'sass-loader')
|
2016-10-10 00:25:35 +00:00
|
|
|
}, {
|
|
|
|
test: /\.less$/,
|
|
|
|
loader: ExtractTextPlugin.extract('style-loader', 'less-loader')
|
2016-10-08 15:04:19 +00:00
|
|
|
}, {
|
|
|
|
test: require.resolve("js-sequence-diagrams"),
|
|
|
|
loader: "imports?Raphael=raphael"
|
|
|
|
}, {
|
|
|
|
test: /\.eot(\?v=\d+\.\d+\.\d+)?$/,
|
|
|
|
loader: "file"
|
|
|
|
}, {
|
|
|
|
test: /\.(woff|woff2)$/,
|
|
|
|
loader: "url?prefix=font/&limit=5000"
|
|
|
|
}, {
|
|
|
|
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
|
|
|
|
loader: "url?limit=10000&mimetype=application/octet-stream"
|
|
|
|
}, {
|
|
|
|
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
|
|
|
|
loader: "url?limit=10000&mimetype=image/svg+xml"
|
|
|
|
}]
|
|
|
|
},
|
2016-10-07 15:05:23 +00:00
|
|
|
|
2016-10-08 15:04:19 +00:00
|
|
|
node: {
|
|
|
|
fs: "empty"
|
|
|
|
}
|
2016-10-07 15:05:23 +00:00
|
|
|
};
|