@angular/compiler-cli 16.0.0-rc.3 → 16.0.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 (38) hide show
  1. package/bundles/{chunk-N7X4GSO5.js → chunk-53CCHRBH.js} +104 -97
  2. package/bundles/{chunk-N7X4GSO5.js.map → chunk-53CCHRBH.js.map} +1 -1
  3. package/bundles/{chunk-2G3UVWBI.js → chunk-ABPMSM4T.js} +8 -8
  4. package/bundles/{chunk-QJ5WULBE.js → chunk-AHPF5263.js} +76 -76
  5. package/bundles/{chunk-BC53B7EF.js → chunk-BZAIS6C3.js} +5 -5
  6. package/bundles/{chunk-OKYKHPES.js → chunk-DZ2JDFLR.js} +33 -33
  7. package/bundles/{chunk-K2U2VZ7S.js → chunk-EC5K6QPP.js} +7 -7
  8. package/bundles/{chunk-OULZQUKT.js → chunk-GYHDNUIK.js} +7 -7
  9. package/bundles/{chunk-URH5LEAG.js → chunk-HJOPJLIM.js} +5 -5
  10. package/bundles/{chunk-CF2CT7RQ.js → chunk-SBDNBITT.js} +3 -3
  11. package/bundles/{chunk-SQZL4JZ2.js → chunk-SL3W33EA.js} +5 -5
  12. package/bundles/{chunk-TCPBYER2.js → chunk-UNR3CTVT.js} +6 -6
  13. package/bundles/{chunk-7RPZKH3B.js → chunk-WL4F4VQG.js} +21 -21
  14. package/bundles/index.js +16 -16
  15. package/bundles/linker/babel/index.js +13 -13
  16. package/bundles/linker/index.js +5 -5
  17. package/bundles/ngcc/index.js +52 -0
  18. package/bundles/ngcc/index.js.map +6 -0
  19. package/bundles/private/bazel.js +1 -1
  20. package/bundles/private/localize.js +3 -3
  21. package/bundles/private/migrations.js +6 -6
  22. package/bundles/private/tooling.js +4 -4
  23. package/bundles/src/bin/ng_xi18n.js +11 -11
  24. package/bundles/src/bin/ngc.js +9 -9
  25. package/bundles_metadata.json +1 -1
  26. package/ngcc/index.d.ts +11 -0
  27. package/package.json +3 -2
  28. /package/bundles/{chunk-2G3UVWBI.js.map → chunk-ABPMSM4T.js.map} +0 -0
  29. /package/bundles/{chunk-QJ5WULBE.js.map → chunk-AHPF5263.js.map} +0 -0
  30. /package/bundles/{chunk-BC53B7EF.js.map → chunk-BZAIS6C3.js.map} +0 -0
  31. /package/bundles/{chunk-OKYKHPES.js.map → chunk-DZ2JDFLR.js.map} +0 -0
  32. /package/bundles/{chunk-K2U2VZ7S.js.map → chunk-EC5K6QPP.js.map} +0 -0
  33. /package/bundles/{chunk-OULZQUKT.js.map → chunk-GYHDNUIK.js.map} +0 -0
  34. /package/bundles/{chunk-URH5LEAG.js.map → chunk-HJOPJLIM.js.map} +0 -0
  35. /package/bundles/{chunk-CF2CT7RQ.js.map → chunk-SBDNBITT.js.map} +0 -0
  36. /package/bundles/{chunk-SQZL4JZ2.js.map → chunk-SL3W33EA.js.map} +0 -0
  37. /package/bundles/{chunk-TCPBYER2.js.map → chunk-UNR3CTVT.js.map} +0 -0
  38. /package/bundles/{chunk-7RPZKH3B.js.map → chunk-WL4F4VQG.js.map} +0 -0
@@ -0,0 +1,11 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * @license
4
+ * Copyright Google LLC All Rights Reserved.
5
+ *
6
+ * Use of this source code is governed by an MIT-style license that can be
7
+ * found in the LICENSE file at https://angular.io/license
8
+ */
9
+ declare function stringEncaseCRLFWithFirstIndex(value: string, prefix: string, postfix: string, index: number): string;
10
+ declare function styleMessage(message: string): string;
11
+ declare const warningMsg = "\n\n==========================================\n\nALERT: As of Angular 16, \"ngcc\" is no longer required and not invoked during CLI builds. You are seeing this message because the current operation invoked the \"ngcc\" command directly. This \"ngcc\" invocation can be safely removed.\n\nA common reason for this is invoking \"ngcc\" from a \"postinstall\" hook in package.json.\n\nIn Angular 17, this command will be removed. Remove this and any other invocations to prevent errors in later versions.\n\n==========================================\n\n";
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@angular/compiler-cli",
3
- "version": "16.0.0-rc.3",
3
+ "version": "16.0.0",
4
4
  "description": "Angular - the compiler CLI for Node.js",
5
5
  "typings": "index.d.ts",
6
6
  "bin": {
7
+ "ngcc": "./bundles/ngcc/index.js",
7
8
  "ngc": "./bundles/src/bin/ngc.js",
8
9
  "ng-xi18n": "./bundles/src/bin/ng_xi18n.js"
9
10
  },
@@ -52,7 +53,7 @@
52
53
  "yargs": "^17.2.1"
53
54
  },
54
55
  "peerDependencies": {
55
- "@angular/compiler": "16.0.0-rc.3",
56
+ "@angular/compiler": "16.0.0",
56
57
  "typescript": ">=4.9.3 <5.1"
57
58
  },
58
59
  "repository": {