@angular-devkit/schematics-cli 0.1100.0-rc.3 → 0.1100.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/bin/schematics.js +1 -1
  2. package/package.json +5 -11
package/bin/schematics.js CHANGED
@@ -212,7 +212,7 @@ async function main({ args, stdout = process.stdout, stderr = process.stderr, })
212
212
  return argv._;
213
213
  }
214
214
  });
215
- parsedArgs._ = [];
215
+ delete parsedArgs._;
216
216
  // Add prompts.
217
217
  if (argv['interactive'] && isTTY()) {
218
218
  workflow.registry.usePromptProvider(_createPromptProvider());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/schematics-cli",
3
- "version": "0.1100.0-rc.3",
3
+ "version": "0.1100.3",
4
4
  "description": "Angular Schematics - CLI",
5
5
  "experimental": true,
6
6
  "bin": {
@@ -20,9 +20,9 @@
20
20
  "schematics"
21
21
  ],
22
22
  "dependencies": {
23
- "@angular-devkit/core": "11.0.0-rc.3",
24
- "@angular-devkit/schematics": "11.0.0-rc.3",
25
- "@schematics/schematics": "0.1100.0-rc.3",
23
+ "@angular-devkit/core": "11.0.3",
24
+ "@angular-devkit/schematics": "11.0.3",
25
+ "@schematics/schematics": "0.1100.3",
26
26
  "ansi-colors": "4.1.1",
27
27
  "inquirer": "7.3.3",
28
28
  "minimist": "1.2.5",
@@ -42,11 +42,5 @@
42
42
  "bugs": {
43
43
  "url": "https://github.com/angular/angular-cli/issues"
44
44
  },
45
- "homepage": "https://github.com/angular/angular-cli",
46
- "husky": {
47
- "hooks": {
48
- "commit-msg": "yarn -s ng-dev commit-message pre-commit-validate --file-env-variable HUSKY_GIT_PARAMS",
49
- "prepare-commit-msg": "yarn -s ng-dev commit-message restore-commit-message-draft --file-env-variable HUSKY_GIT_PARAMS"
50
- }
51
- }
45
+ "homepage": "https://github.com/angular/angular-cli"
52
46
  }