There was an error while loading. Please reload this page.
1 parent 8496487 commit 980a506Copy full SHA for 980a506
README.md
@@ -15,7 +15,8 @@ $ fire ./test.js arg1 arg2
15
16
## Examples
17
18
-```test.js
+```
19
+//test.js
20
module.exports = function(arg1, arg2, opts) {
21
console.log(arg1, Array.isArray(arg1));
22
console.log(arg2);
@@ -38,7 +39,8 @@ done
38
39
```
40
41
One more:
-```calc.js
42
43
+//calc.js
44
exports.add = function(a, b, opts) {
45
return a + b;
46
}
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "node-fire",
3
- "version": "0.0.3",
+ "version": "0.0.4",
4
"description": "A library for automatically generating command line CLIs from any nodejs project.",
5
"bin": {
6
"fire": "./bin/index.js"
0 commit comments