igniteui-cli 10.1.0 → 10.1.1-alpha.0

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/lib/cli.js +7 -1
  2. package/package.json +5 -5
package/lib/cli.js CHANGED
@@ -59,6 +59,12 @@ function run(args = null) {
59
59
  .command(test_1.default)
60
60
  .command(list_1.default)
61
61
  .command(upgrade_1.default)
62
+ // TODO: Please do one of the following:
63
+ // - Disable version with `yargs.version(false)` if using "version" as an option
64
+ // - Use the built-in `yargs.version` method instead (if applicable)
65
+ // - Use a different option key
66
+ // https://yargs.js.org/docs/#api-reference-version
67
+ .version(false)
62
68
  .options({
63
69
  version: {
64
70
  alias: "v",
@@ -68,7 +74,7 @@ function run(args = null) {
68
74
  }
69
75
  })
70
76
  .help().alias("help", "h")
71
- .argv;
77
+ .parseSync();
72
78
  // unsubscribing from process.exit. If `help` was executed we should not reach here
73
79
  process.removeListener("exit", logHelp);
74
80
  if (argv.version) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-cli",
3
- "version": "10.1.0",
3
+ "version": "10.1.1-alpha.0",
4
4
  "description": "CLI tool for creating Ignite UI projects",
5
5
  "keywords": [
6
6
  "CLI",
@@ -72,8 +72,8 @@
72
72
  "all": true
73
73
  },
74
74
  "dependencies": {
75
- "@igniteui/angular-templates": "~14.1.1010",
76
- "@igniteui/cli-core": "~10.1.0",
75
+ "@igniteui/angular-templates": "~14.1.1011-alpha.0",
76
+ "@igniteui/cli-core": "~10.1.1-alpha.0",
77
77
  "chalk": "^2.3.2",
78
78
  "fs-extra": "^3.0.1",
79
79
  "glob": "^7.1.2",
@@ -82,7 +82,7 @@
82
82
  "resolve": "^1.6.0",
83
83
  "through2": "^2.0.3",
84
84
  "typescript": "~4.5.2",
85
- "yargs": "^8.0.2"
85
+ "yargs": "^17.6.2"
86
86
  },
87
87
  "devDependencies": {
88
88
  "@angular-devkit/core": "~14.0.0",
@@ -102,7 +102,7 @@
102
102
  "source-map-support": "^0.5.4",
103
103
  "ts-node": "~8.3.0",
104
104
  "tslint": "~6.1.0",
105
- "typescript-json-schema": "^0.42.0"
105
+ "typescript-json-schema": "^0.55.0"
106
106
  },
107
107
  "ng-update": {
108
108
  "migrations": "./migrations/migration-collection.json",