@noravel/command 1.0.2 → 1.0.3

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.
Files changed (2) hide show
  1. package/dist/Executor.js +1 -0
  2. package/package.json +1 -1
package/dist/Executor.js CHANGED
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  class Executor {
4
4
  static async call(command, argv) {
5
5
  const commandInstance = new command(argv).bootstrap();
6
+ commandInstance.detect();
6
7
  const exitCode = await commandInstance.handle();
7
8
  return exitCode ? 1 : 0;
8
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noravel/command",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "",
5
5
  "repository": {
6
6
  "type": "git",