@angular-devkit/schematics-cli 20.1.2 → 20.2.0-next.1
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(
|
|
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(
|
|
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.1
|
|
3
|
+
"version": "20.2.0-next.1",
|
|
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.1
|
|
25
|
-
"@angular-devkit/schematics": "20.1
|
|
26
|
-
"@inquirer/prompts": "7.
|
|
24
|
+
"@angular-devkit/core": "20.2.0-next.1",
|
|
25
|
+
"@angular-devkit/schematics": "20.2.0-next.1",
|
|
26
|
+
"@inquirer/prompts": "7.7.1",
|
|
27
27
|
"ansi-colors": "4.1.3",
|
|
28
28
|
"yargs-parser": "22.0.0"
|
|
29
29
|
},
|