unbreak bundler

This commit is contained in:
Leo Horie 2016-08-03 00:01:17 -04:00
parent 8ec3a3f2c5
commit 8c71c39631
4 changed files with 33 additions and 32 deletions

View file

@ -6,10 +6,10 @@
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "node bundler/cli index.js -o mithril.js -w",
"build": "npm run build-commonjs & npm run build-browser",
"build-commonjs": "node bundler/cli index.js -o mithril.js",
"build-browser": "node bundler/cli browser.js -o mithril.min.js -m",
"dev": "node bundler/cli browser.js -o mithril.js -w",
"build": "npm run build-browser & npm run build-min",
"build-browser": "node bundler/cli browser.js -o mithril.js",
"build-min": "node bundler/cli browser.js -o mithril.min.js -m",
"lintdocs": "node bundler/lintdocs",
"lint": "eslint .",
"test": "node ospec/bin/ospec",