@angular/compiler-cli 16.2.0-next.4 → 16.2.0-rc.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 (48) hide show
  1. package/bundles/{chunk-GRJYX2PA.js → chunk-5GPIY4NW.js} +5 -5
  2. package/bundles/{chunk-WF3L5COT.js → chunk-CS2FNZXR.js} +774 -47
  3. package/bundles/chunk-CS2FNZXR.js.map +6 -0
  4. package/bundles/{chunk-TBUSSXUA.js → chunk-EC5K6QPP.js} +7 -7
  5. package/bundles/{chunk-SJLWUYXS.js → chunk-EMPTJWPY.js} +5 -7
  6. package/bundles/chunk-EMPTJWPY.js.map +6 -0
  7. package/bundles/{chunk-EKTJ7622.js → chunk-GYHDNUIK.js} +7 -7
  8. package/bundles/{chunk-7PCPPTTO.js → chunk-HJOPJLIM.js} +5 -5
  9. package/bundles/{chunk-IPC76KA7.js → chunk-LRT6BBZP.js} +8 -8
  10. package/bundles/{chunk-E72KZKRK.js → chunk-NFCNUCPF.js} +97 -97
  11. package/bundles/chunk-NFCNUCPF.js.map +6 -0
  12. package/bundles/{chunk-YZ3WOD5G.js → chunk-NYVNWJZI.js} +207 -111
  13. package/bundles/chunk-NYVNWJZI.js.map +6 -0
  14. package/bundles/{chunk-LYJKWJUC.js → chunk-SBDNBITT.js} +3 -3
  15. package/bundles/{chunk-DKWZY2MH.js → chunk-TU4LAK6J.js} +33 -31
  16. package/bundles/{chunk-DKWZY2MH.js.map → chunk-TU4LAK6J.js.map} +1 -1
  17. package/bundles/chunk-UHYH6BYB.js +12 -0
  18. package/bundles/chunk-UHYH6BYB.js.map +6 -0
  19. package/bundles/index.js +13 -13
  20. package/bundles/linker/babel/index.js +13 -13
  21. package/bundles/linker/index.js +5 -5
  22. package/bundles/ngcc/index.js +1 -1
  23. package/bundles/private/bazel.js +1 -1
  24. package/bundles/private/localize.js +3 -3
  25. package/bundles/private/migrations.js +7 -8
  26. package/bundles/private/tooling.js +4 -4
  27. package/bundles/src/bin/ng_xi18n.js +11 -11
  28. package/bundles/src/bin/ngc.js +9 -9
  29. package/bundles_metadata.json +1 -1
  30. package/package.json +2 -2
  31. package/src/ngtsc/annotations/component/src/handler.d.ts +8 -2
  32. package/src/ngtsc/annotations/component/src/metadata.d.ts +1 -1
  33. package/src/ngtsc/imports/index.d.ts +1 -0
  34. package/src/ngtsc/imports/src/deferred_symbol_tracker.d.ts +47 -0
  35. package/src/ngtsc/reflection/src/host.d.ts +4 -0
  36. package/src/ngtsc/reflection/src/typescript.d.ts +5 -0
  37. package/bundles/chunk-E72KZKRK.js.map +0 -6
  38. package/bundles/chunk-NIK4FIWB.js +0 -643
  39. package/bundles/chunk-NIK4FIWB.js.map +0 -6
  40. package/bundles/chunk-SJLWUYXS.js.map +0 -6
  41. package/bundles/chunk-WF3L5COT.js.map +0 -6
  42. package/bundles/chunk-YZ3WOD5G.js.map +0 -6
  43. /package/bundles/{chunk-GRJYX2PA.js.map → chunk-5GPIY4NW.js.map} +0 -0
  44. /package/bundles/{chunk-TBUSSXUA.js.map → chunk-EC5K6QPP.js.map} +0 -0
  45. /package/bundles/{chunk-EKTJ7622.js.map → chunk-GYHDNUIK.js.map} +0 -0
  46. /package/bundles/{chunk-7PCPPTTO.js.map → chunk-HJOPJLIM.js.map} +0 -0
  47. /package/bundles/{chunk-IPC76KA7.js.map → chunk-LRT6BBZP.js.map} +0 -0
  48. /package/bundles/{chunk-LYJKWJUC.js.map → chunk-SBDNBITT.js.map} +0 -0
@@ -12,13 +12,13 @@ import {
12
12
  formatDiagnostics,
13
13
  performCompilation,
14
14
  readConfiguration
15
- } from "./chunk-E72KZKRK.js";
15
+ } from "./chunk-NFCNUCPF.js";
16
16
 
17
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/main.mjs
17
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/main.mjs
18
18
  import ts2 from "typescript";
19
19
  import yargs from "yargs";
20
20
 
21
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/perform_watch.mjs
21
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/perform_watch.mjs
22
22
  import * as chokidar from "chokidar";
23
23
  import * as path from "path";
24
24
  import ts from "typescript";
@@ -234,7 +234,7 @@ function performWatchCompilation(host) {
234
234
  }
235
235
  }
236
236
 
237
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/main.mjs
237
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/main.mjs
238
238
  function main(args, consoleError = console.error, config, customTransformers, programReuse, modifiedResourceFiles, tsickle) {
239
239
  let { project, rootNames, options, errors: configErrors, watch: watch2, emitFlags } = config || readNgcCommandLineAndConfiguration(args);
240
240
  if (configErrors.length) {
@@ -374,4 +374,4 @@ export {
374
374
  * Use of this source code is governed by an MIT-style license that can be
375
375
  * found in the LICENSE file at https://angular.io/license
376
376
  */
377
- //# sourceMappingURL=chunk-GRJYX2PA.js.map
377
+ //# sourceMappingURL=chunk-5GPIY4NW.js.map