@gravirei/reis 1.0.4 → 1.0.5
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/bin/reis.js +3 -1
- package/package.json +1 -1
package/bin/reis.js
CHANGED
|
@@ -235,7 +235,9 @@ program
|
|
|
235
235
|
|
|
236
236
|
// Default action (no command)
|
|
237
237
|
program.action(() => {
|
|
238
|
-
|
|
238
|
+
// If no command given, show help instead
|
|
239
|
+
const helpCmd = require('../lib/commands/help');
|
|
240
|
+
helpCmd();
|
|
239
241
|
});
|
|
240
242
|
|
|
241
243
|
// Parse command-line arguments
|
package/package.json
CHANGED