mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-03 18:20:27 +00:00
139 lines
3.6 KiB
JavaScript
139 lines
3.6 KiB
JavaScript
const webpack = require('webpack');
|
|
const autoprefixer = require('autoprefixer');
|
|
const path = require('path');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
/**
|
|
* This is the Webpack configuration file for local development.
|
|
* It contains local-specific configuration which includes:
|
|
*
|
|
* - Hot reloading configuration
|
|
* - The entry points of the application
|
|
* - Which loaders to use on what files to properly transpile the source
|
|
*
|
|
* For more information, see: http://webpack.github.io/docs/configuration.html
|
|
*/
|
|
|
|
module.exports = {
|
|
// Efficiently evaluate modules with source maps
|
|
devtool: 'eval-source-map',
|
|
|
|
// Set entry points with hot loading
|
|
entry: {
|
|
app: [
|
|
'./app/scripts/main',
|
|
'webpack-hot-middleware/client'
|
|
],
|
|
'dev-app': [
|
|
'./app/scripts/main.dev',
|
|
'webpack-hot-middleware/client'
|
|
],
|
|
'contrast-app': [
|
|
'./app/scripts/contrast-main',
|
|
'webpack-hot-middleware/client'
|
|
],
|
|
'terminal-app': [
|
|
'./app/scripts/terminal-main',
|
|
'webpack-hot-middleware/client'
|
|
],
|
|
vendors: ['babel-polyfill', 'classnames', 'dagre', 'filesize', 'immutable',
|
|
'moment', 'page', 'react', 'react-dom', 'react-motion', 'react-redux', 'redux',
|
|
'redux-thunk', 'reqwest', 'xterm', 'webpack-hot-middleware/client'
|
|
]
|
|
},
|
|
|
|
// Used by Webpack Dev Middleware
|
|
output: {
|
|
publicPath: '',
|
|
path: '/',
|
|
filename: '[name].js'
|
|
},
|
|
|
|
// Necessary plugins for hot load
|
|
plugins: [
|
|
new webpack.optimize.CommonsChunkPlugin('vendors', 'vendors.js'),
|
|
new webpack.optimize.OccurenceOrderPlugin(),
|
|
new webpack.HotModuleReplacementPlugin(),
|
|
new webpack.NoErrorsPlugin(),
|
|
new webpack.IgnorePlugin(/^\.\/locale$/, [/moment$/]),
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['vendors', 'contrast-app'],
|
|
template: 'app/html/index.html',
|
|
filename: 'contrast.html'
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['vendors', 'terminal-app'],
|
|
template: 'app/html/index.html',
|
|
filename: 'terminal.html'
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['vendors', 'dev-app'],
|
|
template: 'app/html/index.html',
|
|
filename: 'dev.html'
|
|
}),
|
|
new HtmlWebpackPlugin({
|
|
chunks: ['vendors', 'app'],
|
|
template: 'app/html/index.html',
|
|
filename: 'index.html'
|
|
})
|
|
],
|
|
|
|
// Transform source code using Babel and React Hot Loader
|
|
module: {
|
|
// Webpack is opionated about how pkgs should be laid out:
|
|
// https://github.com/webpack/webpack/issues/1617
|
|
noParse: [/xterm\/(.*).map$/, /xterm\/dist\/xterm\.js/],
|
|
include: [
|
|
path.resolve(__dirname, 'app/scripts', 'app/styles')
|
|
],
|
|
|
|
preLoaders: [
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules|vendor/,
|
|
loader: 'eslint-loader'
|
|
}
|
|
],
|
|
loaders: [
|
|
{
|
|
test: /\.json$/,
|
|
loader: 'json-loader'
|
|
},
|
|
{
|
|
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
|
|
loader: 'url-loader?limit=10000&minetype=application/font-woff'
|
|
},
|
|
{
|
|
test: /\.(ttf|eot|svg|ico)(\?v=[0-9]\.[0-9]\.[0-9])?$/,
|
|
loader: 'file-loader'
|
|
},
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /node_modules|vendor/,
|
|
loaders: ['babel']
|
|
},
|
|
{
|
|
test: /\.(scss|css)$/,
|
|
loader: 'style-loader!css-loader!postcss-loader!sass-loader'
|
|
}
|
|
]
|
|
},
|
|
|
|
postcss: [
|
|
autoprefixer({
|
|
browsers: ['last 2 versions']
|
|
})
|
|
],
|
|
|
|
// Automatically transform files with these extensions
|
|
resolve: {
|
|
extensions: ['', '.js', '.jsx']
|
|
},
|
|
sassLoader: {
|
|
includePaths: [
|
|
path.resolve(__dirname, './node_modules/xterm'),
|
|
path.resolve(__dirname, './node_modules/font-awesome')
|
|
]
|
|
}
|
|
};
|