Skip to content

Commit

Permalink
fix(global): Fix incremental-dom global name.
Browse files Browse the repository at this point in the history
  • Loading branch information
treshugart committed Jan 17, 2017
1 parent d02a62a commit 8e70fcf
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
9 changes: 9 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"global": "skate",
"externals": {
"incremental-dom": {
"amd": "incremental-dom",
"commonjs": "incremental-dom",
"commonjs2": "incremental-dom",
"root": "IncrementalDOM"
}
},

"name": "skatejs",
"description": "Skate is a library built on top of the W3C web component specs that enables you to write functional and performant web components with a very small footprint.",
"license": "MIT",
Expand Down
3 changes: 2 additions & 1 deletion webpack-blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ function externals () {
const {
dependencies,
devDependencies,
externals,
optionalDependencies,
peerDependencies
} = pack();
return () => ({
externals: Object.keys(
externals: externals || Object.keys(
Object.assign(
{},
dependencies,
Expand Down

0 comments on commit 8e70fcf

Please sign in to comment.