Created
July 30, 2017 15:06
-
-
Save carlosrymer/dff53dd8ab35574f236174530b6f1a44 to your computer and use it in GitHub Desktop.
Common Webpack 3 configuration for an Angular 1.x-based app.
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
'use strict'; | |
const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
const path = require('path'); | |
const preprocess = require('preprocess'); | |
const webpack = require('webpack'); | |
const WebpackFilePreprocessorPlugin = require('webpack-file-preprocessor-plugin'); | |
const CommonsChunkPlugin = webpack.optimize.CommonsChunkPlugin; | |
const devtool = 'source-map'; | |
const preprocessContext = { | |
ts : Date.now() | |
}; | |
const entry = { | |
index : [ | |
'babel-polyfill', | |
path.resolve(__dirname, 'src/index.js') | |
] | |
}; | |
const modules = { | |
rules : [ | |
{ | |
test : /src.*\.js$/, | |
use : [ | |
{ | |
loader : 'ng-annotate-loader' | |
}, | |
{ | |
loader : 'babel-loader' | |
} | |
] | |
}, | |
{ | |
test : /src.*\.tpl\.html$/, | |
use : [ | |
{ | |
loader : 'raw-loader' | |
} | |
] | |
}, | |
{ | |
test : /src.*\.(scss|sass)$/, | |
use : ExtractTextPlugin.extract({ | |
fallback : 'style-loader', | |
use : [ | |
{ | |
loader : 'css-loader' | |
}, | |
{ | |
loader : 'sass-loader' | |
}, | |
{ | |
loader : 'sass-resources-loader', | |
options : { | |
resources: [ | |
path.resolve(__dirname, 'src/common/styles/angularMaterial/mixins.scss') | |
] | |
} | |
} | |
] | |
}) | |
} | |
] | |
}; | |
const plugins = [ | |
new ExtractTextPlugin({ | |
disable : process.env.NODE_ENV !== 'production', | |
filename : '[name].[contenthash].css' | |
}), | |
new HtmlWebpackPlugin({ | |
hash : true, | |
inject : 'body', | |
template : './src/index.html' | |
}), | |
// Automatically move all modules defined outside of application directory to vendor bundle. | |
new CommonsChunkPlugin({ | |
minChunks : (module, count) => module.resource && module.resource.indexOf(path.resolve(__dirname, 'src')) === -1, | |
name : 'vendor' | |
}), | |
new WebpackFilePreprocessorPlugin({ | |
pattern : /index\.html$/, | |
process : (source) => preprocess.preprocess(source.toString(), preprocessContext) | |
}) | |
]; | |
const resolve = { | |
alias : { | |
common : path.resolve(__dirname, 'src/common'), | |
pages : path.resolve(__dirname, 'src/pages') | |
}, | |
descriptionFiles : ['package.json'], | |
modules : ['node_modules'] | |
}; | |
module.exports = { | |
devtool, | |
entry, | |
module : modules, // Set to not conflict with module from module.exports, | |
plugins, | |
resolve | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment