Skip to content

Commit faf44f3

Browse files
committed
Add a simple CLI script to run the transform.
1 parent 591bc30 commit faf44f3

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

bin/es7-async-await

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#!/usr/bin/env node
2+
3+
var assert = require("assert");
4+
5+
module.exports = require("..");
6+
7+
if (require.main === module) {
8+
var args = process.argv.slice(2);
9+
var stream;
10+
11+
if (process.stdin.isTTY) {
12+
assert.notStrictEqual(args.length, 0);
13+
stream = require("fs").createReadStream(args[0]);
14+
} else {
15+
assert.strictEqual(args.length, 0);
16+
stream = process.stdin;
17+
}
18+
19+
stream.pipe(module.exports()).pipe(process.stdout);
20+
}

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
},
2828
"license": "MIT",
2929
"main": "index.js",
30+
"bin": "bin/es7-async-await",
3031
"scripts": {
3132
"test": "node ./node_modules/mocha/bin/mocha --reporter spec"
3233
},

0 commit comments

Comments
 (0)