Created
September 2, 2016 01:16
-
-
Save rajanand02/cf08ee46cb9a420dfabca83aab426cab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var path = require('path'); | |
var HtmlWebpackPlugin = require('html-webpack-plugin'); | |
var Extract = require('extract-text-webpack-plugin'); | |
var AssetsPlugin = require('assets-webpack-plugin'); | |
var CompressionPlugin = require('compression-webpack-plugin'); | |
var webpack = require('webpack'); | |
var DashboardPlugin = require('webpack-dashboard/plugin'); | |
var PROD = process.env.NODE_ENV === 'production'; | |
var DEV = !PROD; | |
var COMPRESS_FILES = process.env.COMPRESS_FILES === 'no'; | |
var plugins = PROD ? [new webpack.optimize.UglifyJsPlugin({ | |
compress: { warnings: false } | |
}), new CompressionPlugin({ | |
asset: "[path][query]", | |
algorithm: "gzip", | |
test: /\.js$|\.css$|\.html$/, | |
threshold: 10240, | |
minRatio: 0.8 | |
}), new AssetsPlugin({ path: path.join(__dirname, 'build'), filename: 'assets.json', fullPath: false })] : []; | |
module.exports = { | |
entry: { | |
"app": "./index.js", | |
"vendor": ["react", "react-router", "react-dom", "redux", "react-redux", "redux-logger", "redux-thunk"] | |
}, | |
output: { | |
path: path.join(__dirname, 'build'), | |
filename: DEV ? 'js/app.bundle.js' : 'js/app.[chunkhash:6].js' | |
}, | |
devtool: DEV? "#inline-source-map" : '', | |
__prod: PROD, | |
module: { | |
loaders: [ | |
{ | |
test: /\.css$/, | |
loader: DEV ? Extract.extract('style', 'css?localIdentName=[name]_[local]_[hash:base64:6]&modules!sass!postcss') : Extract.extract('style', 'css?localIdentName=[hash:base64:6]&modules!sass!postcss') | |
}, | |
{ | |
test: /\.scss/, | |
loader: Extract.extract("style-loader", "css-loader!sass-loader") | |
}, | |
{ | |
test: /\.js$/, | |
loader: 'babel', | |
exclude: /node_modules/, | |
query: { | |
presets: ['react', 'es2015'], | |
plugins: ['transform-object-assign', "transform-class-properties"] | |
} | |
}, | |
{ | |
test: /\.svg$/, | |
loader: 'url?limit=3000&name=[name]_[hash:6].[ext]' | |
}, | |
{ | |
test: /\.(png|jpg|jpeg|gif)$/, | |
loader: 'url?limit=1000&name=[name]_[hash:6].[ext]' | |
}, | |
{ | |
test: /\.hbs$/, | |
loader: "handlebars" | |
}, | |
{ | |
test: /\.json$/, | |
loader: 'json' | |
} | |
] | |
}, | |
postcss: [ | |
require('precss'), | |
require('postcss-cssnext')({ | |
browsers: ['Chrome >= 31', 'Firefox >= 31', 'IE >= 8'], | |
url: false | |
}), | |
require('postcss-nested'), | |
require('postcss-animation'), | |
require('lost') | |
], | |
plugins: plugins.concat([ | |
new webpack.ProvidePlugin({ | |
'Promise': 'imports?this=>global!exports?global.Promise!es6-promise', | |
'fetch': 'imports?this=>global!exports?global.fetch!whatwg-fetch' | |
}), | |
new webpack.optimize.CommonsChunkPlugin("vendor", DEV ? "js/vendor.bundle.js" : "js/vendor.[chunkhash:6].js"), | |
new webpack.DefinePlugin({ | |
__DEV__: DEV, | |
__PROD__: PROD, | |
'process.env.NODE_ENV': `"${process.env.NODE_ENV}"` | |
}), | |
new Extract(DEV ? 'css/bundle.css' : 'css/bundle.[contenthash:6].css', {allChunks: true}), | |
new DashboardPlugin({port: 3001}) | |
]) | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment