@angular-devkit/schematics-cli 20.2.0-next.0 → 20.2.0-next.2

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/schematics.js CHANGED
@@ -283,10 +283,14 @@ async function main({ args, stdout = process.stdout, stderr = process.stderr, })
283
283
  logger.error(`ERROR! ${eventPath} ${event.description == 'alreadyExist' ? 'already exists' : 'does not exist'}.`);
284
284
  break;
285
285
  case 'update':
286
- loggingQueue.push(`${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
286
+ loggingQueue.push(
287
+ // TODO: `as unknown` was necessary during TS 5.9 update. Figure out a long-term solution.
288
+ `${colors.cyan('UPDATE')} ${eventPath} (${event.content.length} bytes)`);
287
289
  break;
288
290
  case 'create':
289
- loggingQueue.push(`${colors.green('CREATE')} ${eventPath} (${event.content.length} bytes)`);
291
+ loggingQueue.push(
292
+ // TODO: `as unknown` was necessary during TS 5.9 update. Figure out a long-term solution.
293
+ `${colors.green('CREATE')} ${eventPath} (${event.content.length} bytes)`);
290
294
  break;
291
295
  case 'delete':
292
296
  loggingQueue.push(`${colors.yellow('DELETE')} ${eventPath}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular-devkit/schematics-cli",
3
- "version": "20.2.0-next.0",
3
+ "version": "20.2.0-next.2",
4
4
  "description": "Angular Schematics - CLI",
5
5
  "homepage": "https://github.com/angular/angular-cli",
6
6
  "bin": {
@@ -21,9 +21,9 @@
21
21
  ],
22
22
  "schematics": "./collection.json",
23
23
  "dependencies": {
24
- "@angular-devkit/core": "20.2.0-next.0",
25
- "@angular-devkit/schematics": "20.2.0-next.0",
26
- "@inquirer/prompts": "7.6.0",
24
+ "@angular-devkit/core": "20.2.0-next.2",
25
+ "@angular-devkit/schematics": "20.2.0-next.2",
26
+ "@inquirer/prompts": "7.7.1",
27
27
  "ansi-colors": "4.1.3",
28
28
  "yargs-parser": "22.0.0"
29
29
  },
@@ -20,6 +20,6 @@
20
20
  "devDependencies": {
21
21
  "@types/node": "^20.17.19",
22
22
  "@types/jasmine": "~5.1.0",
23
- "jasmine": "~5.8.0"
23
+ "jasmine": "~5.9.0"
24
24
  }
25
25
  }