aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2017-09-28 16:09:43 +0300
committerValentin Popov <info@valentineus.link>2017-09-28 16:09:43 +0300
commit5e4bfac39a53498f457d02ff5aac3653a6c822df (patch)
tree6b4cd9249a6c247ff1e4f5e5fef86a901b87e0d5 /package.json
parenta40cbab6100d4c227c89155333f4700e7b6674f1 (diff)
downloadiii-client-5e4bfac39a53498f457d02ff5aac3653a6c822df.tar.xz
iii-client-5e4bfac39a53498f457d02ff5aac3653a6c822df.zip
Added assembly for the browser
Diffstat (limited to 'package.json')
-rw-r--r--package.json8
1 files changed, 6 insertions, 2 deletions
diff --git a/package.json b/package.json
index 2fcf507..95aba53 100644
--- a/package.json
+++ b/package.json
@@ -26,11 +26,15 @@
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
+ "babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
- "eslint": "^3.19.0"
+ "eslint": "^3.19.0",
+ "webpack": "^3.6.0"
},
"scripts": {
- "build": "babel --source-maps --out-file ./dist/index.js ./src/index.js",
+ "build-node": "babel --out-file ./dist/index.js ./src/index.js",
+ "build-browser": "webpack --config webpack.config.js",
+ "build": "npm run build-browser && npm run build-node",
"check": "eslint ./src/*"
}
}