@angular/compiler-cli 18.2.13 → 18.2.14

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 (35) hide show
  1. package/bundles/{chunk-APDLWLLW.js → chunk-65SOG7CU.js} +121 -121
  2. package/bundles/{chunk-Y3H6JOVH.js → chunk-AFLM6Y4J.js} +79 -79
  3. package/bundles/{chunk-26NKUA5V.js → chunk-ALDGUG43.js} +12 -12
  4. package/bundles/{chunk-RT2QTF73.js → chunk-EH5E5HQO.js} +3 -3
  5. package/bundles/{chunk-3Z25BX6N.js → chunk-FMA7PJT3.js} +7 -7
  6. package/bundles/{chunk-PGXXZYOH.js → chunk-HQICP6JA.js} +43 -43
  7. package/bundles/{chunk-YE5ORA4V.js → chunk-JBFBFCL7.js} +7 -7
  8. package/bundles/{chunk-Z5GU2OTU.js → chunk-JNXZMRXO.js} +31 -31
  9. package/bundles/{chunk-AQX32KGU.js → chunk-MKFRGZJ6.js} +3 -3
  10. package/bundles/{chunk-O6SOT3Y4.js → chunk-O7GWKY33.js} +5 -5
  11. package/bundles/{chunk-XSNUHRLJ.js → chunk-UQPYSPIX.js} +5 -5
  12. package/bundles/index.js +12 -12
  13. package/bundles/linker/babel/index.js +12 -12
  14. package/bundles/linker/index.js +4 -4
  15. package/bundles/ngcc/index.js +1 -1
  16. package/bundles/private/bazel.js +1 -1
  17. package/bundles/private/localize.js +3 -3
  18. package/bundles/private/migrations.js +4 -4
  19. package/bundles/private/tooling.js +6 -6
  20. package/bundles/src/bin/ng_xi18n.js +10 -10
  21. package/bundles/src/bin/ngc.js +8 -8
  22. package/bundles_metadata.json +1 -1
  23. package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
  24. package/package.json +2 -2
  25. /package/bundles/{chunk-APDLWLLW.js.map → chunk-65SOG7CU.js.map} +0 -0
  26. /package/bundles/{chunk-Y3H6JOVH.js.map → chunk-AFLM6Y4J.js.map} +0 -0
  27. /package/bundles/{chunk-26NKUA5V.js.map → chunk-ALDGUG43.js.map} +0 -0
  28. /package/bundles/{chunk-RT2QTF73.js.map → chunk-EH5E5HQO.js.map} +0 -0
  29. /package/bundles/{chunk-3Z25BX6N.js.map → chunk-FMA7PJT3.js.map} +0 -0
  30. /package/bundles/{chunk-PGXXZYOH.js.map → chunk-HQICP6JA.js.map} +0 -0
  31. /package/bundles/{chunk-YE5ORA4V.js.map → chunk-JBFBFCL7.js.map} +0 -0
  32. /package/bundles/{chunk-Z5GU2OTU.js.map → chunk-JNXZMRXO.js.map} +0 -0
  33. /package/bundles/{chunk-AQX32KGU.js.map → chunk-MKFRGZJ6.js.map} +0 -0
  34. /package/bundles/{chunk-O6SOT3Y4.js.map → chunk-O7GWKY33.js.map} +0 -0
  35. /package/bundles/{chunk-XSNUHRLJ.js.map → chunk-UQPYSPIX.js.map} +0 -0
@@ -5,12 +5,12 @@
5
5
  import {
6
6
  Context,
7
7
  ExpressionTranslatorVisitor
8
- } from "./chunk-PGXXZYOH.js";
8
+ } from "./chunk-HQICP6JA.js";
9
9
  import {
10
10
  SourceFileLoader
11
- } from "./chunk-3Z25BX6N.js";
11
+ } from "./chunk-FMA7PJT3.js";
12
12
 
13
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/fatal_linker_error.mjs
13
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/fatal_linker_error.mjs
14
14
  var FatalLinkerError = class extends Error {
15
15
  constructor(node, message) {
16
16
  super(message);
@@ -22,14 +22,14 @@ function isFatalLinkerError(e) {
22
22
  return e && e.type === "FatalLinkerError";
23
23
  }
24
24
 
25
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/ast/utils.mjs
25
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/ast/utils.mjs
26
26
  function assert(node, predicate, expected) {
27
27
  if (!predicate(node)) {
28
28
  throw new FatalLinkerError(node, `Unsupported syntax, expected ${expected}.`);
29
29
  }
30
30
  }
31
31
 
32
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/ast/ast_value.mjs
32
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/ast/ast_value.mjs
33
33
  import * as o from "@angular/compiler";
34
34
  var AstObject = class {
35
35
  static parse(expression, host) {
@@ -162,10 +162,10 @@ var AstValue = class {
162
162
  }
163
163
  };
164
164
 
165
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
165
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
166
166
  import { ConstantPool } from "@angular/compiler";
167
167
 
168
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
168
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/linker_import_generator.mjs
169
169
  var LinkerImportGenerator = class {
170
170
  constructor(factory, ngImport) {
171
171
  this.factory = factory;
@@ -185,7 +185,7 @@ var LinkerImportGenerator = class {
185
185
  }
186
186
  };
187
187
 
188
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
188
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/emit_scope.mjs
189
189
  var EmitScope = class {
190
190
  constructor(ngImport, translator, factory) {
191
191
  this.ngImport = ngImport;
@@ -214,7 +214,7 @@ var EmitScope = class {
214
214
  }
215
215
  };
216
216
 
217
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/local_emit_scope.mjs
217
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/emit_scopes/local_emit_scope.mjs
218
218
  var LocalEmitScope = class extends EmitScope {
219
219
  translateDefinition(definition) {
220
220
  return super.translateDefinition({
@@ -227,10 +227,10 @@ var LocalEmitScope = class extends EmitScope {
227
227
  }
228
228
  };
229
229
 
230
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
230
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
231
231
  import semver2 from "semver";
232
232
 
233
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/get_source_file.mjs
233
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/get_source_file.mjs
234
234
  function createGetSourceFile(sourceUrl, code, loader) {
235
235
  if (loader === null) {
236
236
  return () => null;
@@ -245,7 +245,7 @@ function createGetSourceFile(sourceUrl, code, loader) {
245
245
  }
246
246
  }
247
247
 
248
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_async_linker_1.mjs
248
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_async_linker_1.mjs
249
249
  import { compileOpaqueAsyncClassMetadata } from "@angular/compiler";
250
250
  var PartialClassMetadataAsyncLinkerVersion1 = class {
251
251
  linkPartialDeclaration(constantPool, metaObj) {
@@ -270,7 +270,7 @@ var PartialClassMetadataAsyncLinkerVersion1 = class {
270
270
  }
271
271
  };
272
272
 
273
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
273
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_class_metadata_linker_1.mjs
274
274
  import { compileClassMetadata } from "@angular/compiler";
275
275
  var PartialClassMetadataLinkerVersion1 = class {
276
276
  linkPartialDeclaration(constantPool, metaObj) {
@@ -290,16 +290,16 @@ function toR3ClassMetadata(metaObj) {
290
290
  };
291
291
  }
292
292
 
293
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
293
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
294
294
  import { ChangeDetectionStrategy, compileComponentFromMetadata, DEFAULT_INTERPOLATION_CONFIG, InterpolationConfig, makeBindingParser as makeBindingParser2, parseTemplate, R3TargetBinder, R3TemplateDependencyKind, SelectorMatcher, ViewEncapsulation } from "@angular/compiler";
295
295
  import semver from "semver";
296
296
 
297
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
297
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
298
298
  import { compileDirectiveFromMetadata, makeBindingParser, ParseLocation, ParseSourceFile, ParseSourceSpan } from "@angular/compiler";
299
299
 
300
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
300
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/util.mjs
301
301
  import { createMayBeForwardRefExpression, outputAst as o2 } from "@angular/compiler";
302
- var PLACEHOLDER_VERSION = "18.2.13";
302
+ var PLACEHOLDER_VERSION = "18.2.14";
303
303
  function wrapReference(wrapped) {
304
304
  return { value: wrapped, type: wrapped };
305
305
  }
@@ -346,7 +346,7 @@ function extractForwardRef(expr) {
346
346
  return createMayBeForwardRefExpression(wrapperFn.getFunctionReturnValue().getOpaque(), 2);
347
347
  }
348
348
 
349
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
349
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_directive_linker_1.mjs
350
350
  var PartialDirectiveLinkerVersion1 = class {
351
351
  constructor(sourceUrl, code) {
352
352
  this.sourceUrl = sourceUrl;
@@ -493,7 +493,7 @@ function createSourceSpan(range, code, sourceUrl) {
493
493
  return new ParseSourceSpan(startLocation, startLocation.moveBy(range.endPos - range.startPos));
494
494
  }
495
495
 
496
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
496
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_component_linker_1.mjs
497
497
  function makeDirectiveMetadata(directiveExpr, typeExpr, isComponentByDefault = null) {
498
498
  return {
499
499
  kind: R3TemplateDependencyKind.Directive,
@@ -708,7 +708,7 @@ function parseChangeDetectionStrategy(changeDetectionStrategy) {
708
708
  return enumValue;
709
709
  }
710
710
 
711
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
711
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_factory_linker_1.mjs
712
712
  import { compileFactoryFunction, FactoryTarget } from "@angular/compiler";
713
713
  var PartialFactoryLinkerVersion1 = class {
714
714
  linkPartialDeclaration(constantPool, metaObj) {
@@ -744,7 +744,7 @@ function getDependencies(metaObj, propName) {
744
744
  return null;
745
745
  }
746
746
 
747
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
747
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injectable_linker_1.mjs
748
748
  import { compileInjectable, createMayBeForwardRefExpression as createMayBeForwardRefExpression2, outputAst as o3 } from "@angular/compiler";
749
749
  var PartialInjectableLinkerVersion1 = class {
750
750
  linkPartialDeclaration(constantPool, metaObj) {
@@ -782,7 +782,7 @@ function toR3InjectableMeta(metaObj) {
782
782
  return meta;
783
783
  }
784
784
 
785
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
785
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_injector_linker_1.mjs
786
786
  import { compileInjector } from "@angular/compiler";
787
787
  var PartialInjectorLinkerVersion1 = class {
788
788
  linkPartialDeclaration(constantPool, metaObj) {
@@ -804,7 +804,7 @@ function toR3InjectorMeta(metaObj) {
804
804
  };
805
805
  }
806
806
 
807
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
807
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_ng_module_linker_1.mjs
808
808
  import { compileNgModule, R3NgModuleMetadataKind, R3SelectorScopeMode } from "@angular/compiler";
809
809
  var PartialNgModuleLinkerVersion1 = class {
810
810
  constructor(emitInline) {
@@ -876,7 +876,7 @@ function wrapReferences(values) {
876
876
  return values.getArray().map((i) => wrapReference(i.getOpaque()));
877
877
  }
878
878
 
879
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
879
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_pipe_linker_1.mjs
880
880
  import { compilePipeFromMetadata } from "@angular/compiler";
881
881
  var PartialPipeLinkerVersion1 = class {
882
882
  constructor() {
@@ -905,7 +905,7 @@ function toR3PipeMeta(metaObj) {
905
905
  };
906
906
  }
907
907
 
908
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
908
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/partial_linkers/partial_linker_selector.mjs
909
909
  var \u0275\u0275ngDeclareDirective = "\u0275\u0275ngDeclareDirective";
910
910
  var \u0275\u0275ngDeclareClassMetadata = "\u0275\u0275ngDeclareClassMetadata";
911
911
  var \u0275\u0275ngDeclareComponent = "\u0275\u0275ngDeclareComponent";
@@ -1007,7 +1007,7 @@ function getRange(comparator, versionStr) {
1007
1007
  return new semver2.Range(`${comparator}${version.format()}`);
1008
1008
  }
1009
1009
 
1010
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
1010
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/file_linker.mjs
1011
1011
  var FileLinker = class {
1012
1012
  constructor(linkerEnvironment, sourceUrl, code) {
1013
1013
  this.linkerEnvironment = linkerEnvironment;
@@ -1050,14 +1050,14 @@ var FileLinker = class {
1050
1050
  }
1051
1051
  };
1052
1052
 
1053
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
1053
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_options.mjs
1054
1054
  var DEFAULT_LINKER_OPTIONS = {
1055
1055
  sourceMapping: true,
1056
1056
  linkerJitMode: false,
1057
1057
  unknownDeclarationVersionHandling: "error"
1058
1058
  };
1059
1059
 
1060
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
1060
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/translator.mjs
1061
1061
  var Translator = class {
1062
1062
  constructor(factory) {
1063
1063
  this.factory = factory;
@@ -1070,7 +1070,7 @@ var Translator = class {
1070
1070
  }
1071
1071
  };
1072
1072
 
1073
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
1073
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/linker_environment.mjs
1074
1074
  var LinkerEnvironment = class {
1075
1075
  constructor(fileSystem, logger, host, factory, options) {
1076
1076
  this.fileSystem = fileSystem;
@@ -1091,7 +1091,7 @@ var LinkerEnvironment = class {
1091
1091
  }
1092
1092
  };
1093
1093
 
1094
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
1094
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/src/file_linker/needs_linking.mjs
1095
1095
  function needsLinking(path, source) {
1096
1096
  return declarationFunctions.some((fn) => source.includes(fn));
1097
1097
  }
@@ -1112,4 +1112,4 @@ export {
1112
1112
  * Use of this source code is governed by an MIT-style license that can be
1113
1113
  * found in the LICENSE file at https://angular.dev/license
1114
1114
  */
1115
- //# sourceMappingURL=chunk-Z5GU2OTU.js.map
1115
+ //# sourceMappingURL=chunk-JNXZMRXO.js.map
@@ -4,9 +4,9 @@
4
4
 
5
5
  import {
6
6
  angularJitApplicationTransform
7
- } from "./chunk-26NKUA5V.js";
7
+ } from "./chunk-ALDGUG43.js";
8
8
 
9
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
9
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/private/tooling.mjs
10
10
  var GLOBAL_DEFS_FOR_TERSER = {
11
11
  ngDevMode: false,
12
12
  ngI18nClosureMode: false
@@ -31,4 +31,4 @@ export {
31
31
  * Use of this source code is governed by an MIT-style license that can be
32
32
  * found in the LICENSE file at https://angular.dev/license
33
33
  */
34
- //# sourceMappingURL=chunk-AQX32KGU.js.map
34
+ //# sourceMappingURL=chunk-MKFRGZJ6.js.map
@@ -12,13 +12,13 @@ import {
12
12
  formatDiagnostics,
13
13
  performCompilation,
14
14
  readConfiguration
15
- } from "./chunk-Y3H6JOVH.js";
15
+ } from "./chunk-AFLM6Y4J.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";
@@ -242,7 +242,7 @@ function performWatchCompilation(host) {
242
242
  }
243
243
  }
244
244
 
245
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/main.mjs
245
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/main.mjs
246
246
  function main(args, consoleError = console.error, config, customTransformers, programReuse, modifiedResourceFiles) {
247
247
  let { project, rootNames, options, errors: configErrors, watch: watch2, emitFlags } = config || readNgcCommandLineAndConfiguration(args);
248
248
  if (configErrors.length) {
@@ -363,4 +363,4 @@ export {
363
363
  * Use of this source code is governed by an MIT-style license that can be
364
364
  * found in the LICENSE file at https://angular.dev/license
365
365
  */
366
- //# sourceMappingURL=chunk-O6SOT3Y4.js.map
366
+ //# sourceMappingURL=chunk-O7GWKY33.js.map
@@ -3,7 +3,7 @@
3
3
  const require = __cjsCompatRequire(import.meta.url);
4
4
 
5
5
 
6
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
6
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.mjs
7
7
  var PerfPhase;
8
8
  (function(PerfPhase2) {
9
9
  PerfPhase2[PerfPhase2["Unaccounted"] = 0] = "Unaccounted";
@@ -73,7 +73,7 @@ var PerfCheckpoint;
73
73
  PerfCheckpoint2[PerfCheckpoint2["LAST"] = 9] = "LAST";
74
74
  })(PerfCheckpoint || (PerfCheckpoint = {}));
75
75
 
76
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
76
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.mjs
77
77
  var NoopPerfRecorder = class {
78
78
  eventCount() {
79
79
  }
@@ -90,7 +90,7 @@ var NoopPerfRecorder = class {
90
90
  };
91
91
  var NOOP_PERF_RECORDER = new NoopPerfRecorder();
92
92
 
93
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
93
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.mjs
94
94
  function mark() {
95
95
  return process.hrtime();
96
96
  }
@@ -99,7 +99,7 @@ function timeSinceInMicros(mark2) {
99
99
  return delta[0] * 1e6 + Math.floor(delta[1] / 1e3);
100
100
  }
101
101
 
102
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
102
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.mjs
103
103
  var ActivePerfRecorder = class {
104
104
  static zeroedToNow() {
105
105
  return new ActivePerfRecorder(mark());
@@ -207,4 +207,4 @@ export {
207
207
  * Use of this source code is governed by an MIT-style license that can be
208
208
  * found in the LICENSE file at https://angular.dev/license
209
209
  */
210
- //# sourceMappingURL=chunk-XSNUHRLJ.js.map
210
+ //# sourceMappingURL=chunk-UQPYSPIX.js.map
package/bundles/index.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  GLOBAL_DEFS_FOR_TERSER,
7
7
  GLOBAL_DEFS_FOR_TERSER_WITH_AOT,
8
8
  constructorParametersDownlevelTransform
9
- } from "./chunk-AQX32KGU.js";
9
+ } from "./chunk-MKFRGZJ6.js";
10
10
  import {
11
11
  DEFAULT_ERROR_CODE,
12
12
  DecoratorType,
@@ -33,27 +33,27 @@ import {
33
33
  isTsDiagnostic,
34
34
  performCompilation,
35
35
  readConfiguration
36
- } from "./chunk-Y3H6JOVH.js";
36
+ } from "./chunk-AFLM6Y4J.js";
37
37
  import {
38
38
  angularJitApplicationTransform,
39
39
  getDownlevelDecoratorsTransform,
40
40
  getInitializerApiJitTransform
41
- } from "./chunk-26NKUA5V.js";
41
+ } from "./chunk-ALDGUG43.js";
42
42
  import {
43
43
  OptimizeFor,
44
44
  TsCreateProgramDriver
45
- } from "./chunk-APDLWLLW.js";
45
+ } from "./chunk-65SOG7CU.js";
46
46
  import {
47
47
  isLocalCompilationDiagnostics
48
- } from "./chunk-PGXXZYOH.js";
48
+ } from "./chunk-HQICP6JA.js";
49
49
  import {
50
50
  ActivePerfRecorder,
51
51
  PerfPhase
52
- } from "./chunk-XSNUHRLJ.js";
52
+ } from "./chunk-UQPYSPIX.js";
53
53
  import {
54
54
  ConsoleLogger,
55
55
  LogLevel
56
- } from "./chunk-RT2QTF73.js";
56
+ } from "./chunk-EH5E5HQO.js";
57
57
  import {
58
58
  LogicalFileSystem,
59
59
  LogicalProjectPath,
@@ -74,14 +74,14 @@ import {
74
74
  resolve,
75
75
  setFileSystem,
76
76
  toRelativeImport
77
- } from "./chunk-YE5ORA4V.js";
77
+ } from "./chunk-JBFBFCL7.js";
78
78
  import "./chunk-XI2RTGAL.js";
79
79
 
80
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
80
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
81
81
  import { Version } from "@angular/compiler";
82
- var VERSION = new Version("18.2.13");
82
+ var VERSION = new Version("18.2.14");
83
83
 
84
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
84
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
85
85
  var NgTscPlugin = class {
86
86
  get compiler() {
87
87
  if (this._compiler === null) {
@@ -157,7 +157,7 @@ var NgTscPlugin = class {
157
157
  }
158
158
  };
159
159
 
160
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/index.mjs
160
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
161
161
  setFileSystem(new NodeJSFileSystem());
162
162
  export {
163
163
  ConsoleLogger,
@@ -8,22 +8,22 @@ import {
8
8
  LinkerEnvironment,
9
9
  assert,
10
10
  isFatalLinkerError
11
- } from "../../chunk-Z5GU2OTU.js";
12
- import "../../chunk-PGXXZYOH.js";
11
+ } from "../../chunk-JNXZMRXO.js";
12
+ import "../../chunk-HQICP6JA.js";
13
13
  import {
14
14
  ConsoleLogger,
15
15
  LogLevel
16
- } from "../../chunk-RT2QTF73.js";
17
- import "../../chunk-3Z25BX6N.js";
16
+ } from "../../chunk-EH5E5HQO.js";
17
+ import "../../chunk-FMA7PJT3.js";
18
18
  import {
19
19
  NodeJSFileSystem
20
- } from "../../chunk-YE5ORA4V.js";
20
+ } from "../../chunk-JBFBFCL7.js";
21
21
  import "../../chunk-XI2RTGAL.js";
22
22
 
23
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
23
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
24
24
  import { types as t4 } from "@babel/core";
25
25
 
26
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_factory.mjs
26
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_factory.mjs
27
27
  import { types as t } from "@babel/core";
28
28
  var BabelAstFactory = class {
29
29
  constructor(sourceUrl) {
@@ -148,7 +148,7 @@ function isLExpression(expr) {
148
148
  return t.isLVal(expr);
149
149
  }
150
150
 
151
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_host.mjs
151
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_host.mjs
152
152
  import { types as t2 } from "@babel/core";
153
153
  var BabelAstHost = class {
154
154
  constructor() {
@@ -276,7 +276,7 @@ function isMinifiedBooleanLiteral(node) {
276
276
  return t2.isUnaryExpression(node) && node.prefix && node.operator === "!" && t2.isNumericLiteral(node.argument) && (node.argument.value === 0 || node.argument.value === 1);
277
277
  }
278
278
 
279
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_declaration_scope.mjs
279
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_declaration_scope.mjs
280
280
  import { types as t3 } from "@babel/core";
281
281
  var BabelDeclarationScope = class {
282
282
  constructor(declarationScope) {
@@ -302,7 +302,7 @@ var BabelDeclarationScope = class {
302
302
  }
303
303
  };
304
304
 
305
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
305
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
306
306
  function createEs2015LinkerPlugin({ fileSystem, logger, ...options }) {
307
307
  let fileLinker = null;
308
308
  return {
@@ -403,7 +403,7 @@ function buildCodeFrameError(file, message, node) {
403
403
  return `${filename}: ${error.message}`;
404
404
  }
405
405
 
406
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_plugin.mjs
406
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_plugin.mjs
407
407
  function defaultLinkerPlugin(api, options) {
408
408
  api.assertVersion(7);
409
409
  return createEs2015LinkerPlugin({
@@ -413,7 +413,7 @@ function defaultLinkerPlugin(api, options) {
413
413
  });
414
414
  }
415
415
 
416
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/linker/babel/index.mjs
416
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/index.mjs
417
417
  var babel_default = defaultLinkerPlugin;
418
418
  export {
419
419
  createEs2015LinkerPlugin,
@@ -10,10 +10,10 @@ import {
10
10
  assert,
11
11
  isFatalLinkerError,
12
12
  needsLinking
13
- } from "../chunk-Z5GU2OTU.js";
14
- import "../chunk-PGXXZYOH.js";
15
- import "../chunk-3Z25BX6N.js";
16
- import "../chunk-YE5ORA4V.js";
13
+ } from "../chunk-JNXZMRXO.js";
14
+ import "../chunk-HQICP6JA.js";
15
+ import "../chunk-FMA7PJT3.js";
16
+ import "../chunk-JBFBFCL7.js";
17
17
  import "../chunk-XI2RTGAL.js";
18
18
  export {
19
19
  DEFAULT_LINKER_OPTIONS,
@@ -4,7 +4,7 @@
4
4
  const require = __cjsCompatRequire(import.meta.url);
5
5
 
6
6
 
7
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
7
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/ngcc/index.mjs
8
8
  function stringEncaseCRLFWithFirstIndex(value, prefix, postfix, index) {
9
9
  let endIndex = 0;
10
10
  let returnValue = "";
@@ -4,7 +4,7 @@
4
4
 
5
5
  import {
6
6
  PerfPhase
7
- } from "../chunk-XSNUHRLJ.js";
7
+ } from "../chunk-UQPYSPIX.js";
8
8
  import "../chunk-XI2RTGAL.js";
9
9
  export {
10
10
  PerfPhase
@@ -5,11 +5,11 @@
5
5
  import {
6
6
  ConsoleLogger,
7
7
  LogLevel
8
- } from "../chunk-RT2QTF73.js";
8
+ } from "../chunk-EH5E5HQO.js";
9
9
  import {
10
10
  SourceFile,
11
11
  SourceFileLoader
12
- } from "../chunk-3Z25BX6N.js";
12
+ } from "../chunk-FMA7PJT3.js";
13
13
  import {
14
14
  LogicalFileSystem,
15
15
  LogicalProjectPath,
@@ -30,7 +30,7 @@ import {
30
30
  resolve,
31
31
  setFileSystem,
32
32
  toRelativeImport
33
- } from "../chunk-YE5ORA4V.js";
33
+ } from "../chunk-JBFBFCL7.js";
34
34
  import "../chunk-XI2RTGAL.js";
35
35
  export {
36
36
  ConsoleLogger,
@@ -9,15 +9,15 @@ import {
9
9
  PotentialImportMode,
10
10
  StaticInterpreter,
11
11
  forwardRefResolver
12
- } from "../chunk-APDLWLLW.js";
12
+ } from "../chunk-65SOG7CU.js";
13
13
  import {
14
14
  ImportManager,
15
15
  Reference,
16
16
  TypeScriptReflectionHost,
17
17
  reflectObjectLiteral
18
- } from "../chunk-PGXXZYOH.js";
19
- import "../chunk-XSNUHRLJ.js";
20
- import "../chunk-YE5ORA4V.js";
18
+ } from "../chunk-HQICP6JA.js";
19
+ import "../chunk-UQPYSPIX.js";
20
+ import "../chunk-JBFBFCL7.js";
21
21
  import "../chunk-XI2RTGAL.js";
22
22
  export {
23
23
  DynamicValue,
@@ -6,12 +6,12 @@ import {
6
6
  GLOBAL_DEFS_FOR_TERSER,
7
7
  GLOBAL_DEFS_FOR_TERSER_WITH_AOT,
8
8
  constructorParametersDownlevelTransform
9
- } from "../chunk-AQX32KGU.js";
10
- import "../chunk-26NKUA5V.js";
11
- import "../chunk-APDLWLLW.js";
12
- import "../chunk-PGXXZYOH.js";
13
- import "../chunk-XSNUHRLJ.js";
14
- import "../chunk-YE5ORA4V.js";
9
+ } from "../chunk-MKFRGZJ6.js";
10
+ import "../chunk-ALDGUG43.js";
11
+ import "../chunk-65SOG7CU.js";
12
+ import "../chunk-HQICP6JA.js";
13
+ import "../chunk-UQPYSPIX.js";
14
+ import "../chunk-JBFBFCL7.js";
15
15
  import "../chunk-XI2RTGAL.js";
16
16
  export {
17
17
  GLOBAL_DEFS_FOR_TERSER,
@@ -6,24 +6,24 @@
6
6
  import {
7
7
  main,
8
8
  readCommandLineAndConfiguration
9
- } from "../../chunk-O6SOT3Y4.js";
9
+ } from "../../chunk-O7GWKY33.js";
10
10
  import {
11
11
  EmitFlags
12
- } from "../../chunk-Y3H6JOVH.js";
13
- import "../../chunk-26NKUA5V.js";
14
- import "../../chunk-APDLWLLW.js";
15
- import "../../chunk-PGXXZYOH.js";
16
- import "../../chunk-XSNUHRLJ.js";
12
+ } from "../../chunk-AFLM6Y4J.js";
13
+ import "../../chunk-ALDGUG43.js";
14
+ import "../../chunk-65SOG7CU.js";
15
+ import "../../chunk-HQICP6JA.js";
16
+ import "../../chunk-UQPYSPIX.js";
17
17
  import {
18
18
  NodeJSFileSystem,
19
19
  setFileSystem
20
- } from "../../chunk-YE5ORA4V.js";
20
+ } from "../../chunk-JBFBFCL7.js";
21
21
  import "../../chunk-XI2RTGAL.js";
22
22
 
23
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
23
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
24
24
  import "reflect-metadata";
25
25
 
26
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/extract_i18n.mjs
26
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/extract_i18n.mjs
27
27
  import yargs from "yargs";
28
28
  function mainXi18n(args2, consoleError = console.error) {
29
29
  const config = readXi18nCommandLineAndConfiguration(args2);
@@ -46,7 +46,7 @@ function readXi18nCommandLineAndConfiguration(args2) {
46
46
  return { ...config, emitFlags: EmitFlags.I18nBundle };
47
47
  }
48
48
 
49
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
49
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
50
50
  process.title = "Angular i18n Message Extractor (ng-xi18n)";
51
51
  var args = process.argv.slice(2);
52
52
  setFileSystem(new NodeJSFileSystem());
@@ -5,19 +5,19 @@
5
5
 
6
6
  import {
7
7
  main
8
- } from "../../chunk-O6SOT3Y4.js";
9
- import "../../chunk-Y3H6JOVH.js";
10
- import "../../chunk-26NKUA5V.js";
11
- import "../../chunk-APDLWLLW.js";
12
- import "../../chunk-PGXXZYOH.js";
13
- import "../../chunk-XSNUHRLJ.js";
8
+ } from "../../chunk-O7GWKY33.js";
9
+ import "../../chunk-AFLM6Y4J.js";
10
+ import "../../chunk-ALDGUG43.js";
11
+ import "../../chunk-65SOG7CU.js";
12
+ import "../../chunk-HQICP6JA.js";
13
+ import "../../chunk-UQPYSPIX.js";
14
14
  import {
15
15
  NodeJSFileSystem,
16
16
  setFileSystem
17
- } from "../../chunk-YE5ORA4V.js";
17
+ } from "../../chunk-JBFBFCL7.js";
18
18
  import "../../chunk-XI2RTGAL.js";
19
19
 
20
- // bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/bin/ngc.mjs
20
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/bin/ngc.mjs
21
21
  import "reflect-metadata";
22
22
  async function runNgcComamnd() {
23
23
  process.title = "Angular Compiler (ngc)";