Skip to content

Commit

Permalink
fix(global): Fix global name to skate instead of skatejs
Browse files Browse the repository at this point in the history
  • Loading branch information
treshugart committed Jan 17, 2017
1 parent 9b37738 commit 068563c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"build:global": "skate",
"global": "skate",
"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
4 changes: 2 additions & 2 deletions webpack-blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ function externals () {
}

function output (userDefinedOutput) {
const { name } = pack();
const { global, name } = pack();
const temp = Object.assign({}, {
filename: '[name]',
library: name,
library: global || name,
libraryTarget: 'umd',
path: './',
sourceMapFilename: '[file].map'
Expand Down

0 comments on commit 068563c

Please sign in to comment.