Skip to content

Commit

Permalink
fixing index.umd.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay committed Jul 9, 2016
1 parent d253feb commit 4450deb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
0.1.17 / 09.07.2016
0.1.17 - 0.1.19 / 09.07.2016
===================

* Plugin removal bug fix
* Added `exclude_from_externals` module
* Covered external modules resolution with tests

0.1.16 / 09.07.2016
==================
===================

* Removing `CommonsChunkPlugin` from server-side configuration

Expand Down
8 changes: 4 additions & 4 deletions index.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

exports = module.exports =
{
server : require('./build/server').default,
server : require('./build/server'),
server_configuration : require('./build/server configuration').default,
client_configuration : require('./build/client configuration').default,
prepare : require('./build/prepare').default,
client_configuration : require('./build/client configuration'),
prepare : require('./build/prepare'),

// for camelCased guys
serverConfiguration : require('./build/server configuration').default,
clientConfiguration : require('./build/client configuration').default
clientConfiguration : require('./build/client configuration')
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "universal-webpack",
"version": "0.1.18",
"version": "0.1.19",
"description": "Isomorphic Webpack",
"main": "index.umd.js",
"jsnext:main": "index.es6.js",
Expand Down

0 comments on commit 4450deb

Please sign in to comment.