Fix Webpack, again (#2895)

* Add inject to "bundle everything" list

* Fixes the `build-server` script // Updates Webpack config (#2872)

* New Webpack config file for libraries

* Added `parity-utils` path

* Removed parity in CommonChunks prod

* Fixes CI build

* Re-Add Libs in Webpack Config
This commit is contained in:
Nicolas Gotchac 2016-10-26 16:27:53 +02:00 committed by Gav Wood
parent a1745624ce
commit 99fab5cdb9

View File

@ -40,6 +40,10 @@ module.exports = {
'registry': ['./dapps/registry.js'],
'signaturereg': ['./dapps/signaturereg.js'],
'tokenreg': ['./dapps/tokenreg.js'],
// library
'inject': ['./web3.js'],
'web3': ['./web3.js'],
'parity': ['./parity.js'],
// app
'index': ['./index.js']
},