1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-05 02:29:26 +02:00

Separated webpack entries from chunks so the big chunks can be cached easily.

This commit is contained in:
Gunther Brunner 2014-07-02 20:08:21 +09:00
parent 080d7d9e39
commit 0add3eaddc
6 changed files with 61 additions and 35 deletions

View file

@ -1,13 +1,19 @@
var pathutil = require('./lib/util/pathutil')
var webpack = require('webpack')
var CommonsChunkPlugin = require("webpack/lib/optimize/CommonsChunkPlugin")
module.exports = {
cache: true
, entry: pathutil.resource('app/app.js')
, entry: {
app: pathutil.resource('app/app.js')
, authldap: pathutil.resource('auth-ldap/scripts/entry.js')
, authmock: pathutil.resource('auth-mock/scripts/entry.js')
}
, output: {
path: pathutil.resource('build')
, publicPath: '/static/build/'
, filename: 'bundle.js'
, filename: 'entry/[name].entry.js'
, chunkFilename: '[id].[hash].chunk.js'
}
, stats: {
colors: true
@ -78,5 +84,6 @@ module.exports = {
, ['main']
)
)
, new CommonsChunkPlugin("entry/commons.entry.js")
]
}