We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 591bc30 commit faf44f3Copy full SHA for faf44f3
bin/es7-async-await
@@ -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
@@ -27,6 +27,7 @@
27
},
28
"license": "MIT",
29
"main": "index.js",
30
+ "bin": "bin/es7-async-await",
31
"scripts": {
32
"test": "node ./node_modules/mocha/bin/mocha --reporter spec"
33
0 commit comments