nwlink 0.0.3 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1 +1,5 @@
1
- # Hello
1
+ # nwlink
2
+
3
+ The `nwlink` command-line tool allows you to communicate with your NumWorks calculator from the command line.
4
+
5
+ Simply install it with `npm install -g nwlink`, the run `nwlink --help` to get a list of possible commands.
package/bin/nwlink CHANGED
@@ -1,7 +1,3 @@
1
1
  #!/usr/bin/env node
2
- const program = require('../index.js')
3
-
4
- program.parseAsync(process.argv).catch(error => {
5
- console.error(error.stack)
6
- process.exit(1)
7
- })
2
+ const cli = require('../lib/index.js')
3
+ cli(process.argv)