Skip to content

Commit

Permalink
using the local cli for benchmark, npm run benchmark does everything now
Browse files Browse the repository at this point in the history
  • Loading branch information
caridy committed Jun 30, 2014
1 parent fe51220 commit a779990
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"benchmark-compile-cjs": "cd tests/benchmark/src/; compile-modules convert -f commonjs *.js -o ../cjs",
"benchmark-compile-system": "cd tests/benchmark/src/; compile-modules convert -f /Users/caridy/repo/es6-micro-loader/node_modules/es6-module-transpiler-system-formatter *.js -o ../system",
"benchmark": "node tests/benchmark/cjs-vs-system.js"
"benchmark-compile-cjs": "cd tests/benchmark/src/; ../../../node_modules/.bin/compile-modules convert -f commonjs *.js -o ../cjs",
"benchmark-compile-system": "cd tests/benchmark/src/; ../../../node_modules/.bin/compile-modules convert -f es6-module-transpiler-system-formatter *.js -o ../system",
"benchmark": "npm run benchmark-compile-cjs; npm run benchmark-compile-system; node tests/benchmark/cjs-vs-system.js"
},
"license": "MIT",
"dependencies": {
Expand Down

0 comments on commit a779990

Please sign in to comment.