Skip to content

Commit

Permalink
fix(node): removed --harmony flag from bin script, fixes #19
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Feb 3, 2016
1 parent 5743d8b commit 6fc1ec7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/npm-quick-run.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env node --harmony
#!/usr/bin/env node

'use strict'

const quickRun = require('..')
var quickRun = require('..')

const help = [
var help = [
'USE: nrun <npm script prefix> <script arguments>',
'\t"nr t" === "nrun t" === "npm test"',
'\t"nr m -w" probably will find "npm run mocha -- --w"'
Expand All @@ -21,5 +21,5 @@ require('simple-bin-help')({
}
})

const prefix = process.argv[2]
var prefix = process.argv[2]
quickRun(prefix)

0 comments on commit 6fc1ec7

Please sign in to comment.