speed up build using babel-node instead of manually babelifying

This commit is contained in:
David Hemphill 2017-08-26 15:08:26 -05:00 committed by Adam Wathan
parent 3ceba8ef52
commit ccbe282a76

View File

@ -12,7 +12,7 @@
"prebabelify": "rimraf lib",
"babelify": "babel src --out-dir lib",
"prepare": "npm run babelify",
"build": "npm run prepare && node lib/build.js",
"build": "babel-node src/build.js",
"test": "jest"
},
"devDependencies": {