Skip to content

Commit

Permalink
flip around esm and umd build labels
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Reinstein committed Feb 27, 2019
1 parent 4b5f628 commit fc90485
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"scripts": {
"build": "npm-run-all -p build:*",
"build:css": "cp dialog-polyfill.css dist/dialog-polyfill.css",
"build:esm": "rollup index.js --file dist/dialog-polyfill.js --format umd --name dialogPolyfill",
"build:umd": "rollup index.js --file dist/dialog-polyfill.esm.js --format esm",
"build:esm": "rollup index.js --file dist/dialog-polyfill.esm.js --format esm",
"build:umd": "rollup index.js --file dist/dialog-polyfill.js --format umd --name dialogPolyfill",
"prepublishOnly": "npm run build",
"test": "open test.html"
}
Expand Down

0 comments on commit fc90485

Please sign in to comment.