cleanup scripts

This commit is contained in:
Michael Bradley, Jr 2018-07-08 21:59:44 -05:00
parent 3497d3bb02
commit e7ab2094ae
2 changed files with 8 additions and 7 deletions

View File

@ -1,9 +1,11 @@
{
"comments": false,
"compact": false,
"presets": [
["@babel/env", {"targets": {"node": "8.11.3"}}]
],
"ignore": ["src/browser.js"],
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
["@babel/env", {"targets": {"node": "8.11.3"}}]
]
}

View File

@ -10,12 +10,11 @@
"src"
],
"scripts": {
"build": "npm run clean && npm run build-babel && npm run build-webpack",
"build-babel": "babel --ignore 'src/browser.js' --out-dir dist src",
"build-webpack": "npm run webpack",
"babel": "babel --out-dir dist src",
"build": "npm run clean && npm run babel && npm run webpack",
"clean": "rimraf dist embark.min.js embarkjs-*.tgz package",
"http-server": "http-server",
"prepare": "npm run build",
"server": "http-server",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack"
},