HackMD/webpack.config.js

80 lines
2.1 KiB
JavaScript
Raw Normal View History

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',
jquery: "jquery",
jQuery: "jquery",
$: "jquery",
"window.jQuery": "jquery",
Visibility: "visibilityjs",
Cookies: "js-cookie",
emojify: "emojify.js",
io: "socket.io-client",
LZString: "lz-string",
2016-10-09 09:55:07 +00:00
key: "keymaster",
Viz: "viz.js"
2016-10-08 15:04:19 +00:00
}),
new webpack.DefinePlugin({
"require.specified": "require.resolve"
}),
new ExtractTextPlugin("[name].css")
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-09 13:09:22 +00:00
public: path.join(__dirname, 'public/js/public.js')
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: {
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$/,
loader: ExtractTextPlugin.extract('style-loader', 'css-loader')
2016-10-08 15:04:19 +00:00
}, , {
test: /\.scss$/,
loader: ExtractTextPlugin.extract('style-loader', 'sass-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
};