@angular/compiler-cli 16.0.4 → 16.0.6

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 (36) hide show
  1. package/bundles/{chunk-73XDHERB.js → chunk-3TE5ZM3R.js} +5 -5
  2. package/bundles/{chunk-QBQKEXLX.js → chunk-6O35F4QW.js} +94 -94
  3. package/bundles/{chunk-QBQKEXLX.js.map → chunk-6O35F4QW.js.map} +1 -1
  4. package/bundles/{chunk-K2U2VZ7S.js → chunk-EC5K6QPP.js} +7 -7
  5. package/bundles/{chunk-JCLVSACV.js → chunk-EK7UBJX3.js} +8 -8
  6. package/bundles/{chunk-OULZQUKT.js → chunk-GYHDNUIK.js} +7 -7
  7. package/bundles/{chunk-FYJ5FZGI.js → chunk-H4DJPYMT.js} +76 -76
  8. package/bundles/{chunk-URH5LEAG.js → chunk-HJOPJLIM.js} +5 -5
  9. package/bundles/{chunk-CBMWIHWP.js → chunk-N2IZWO7U.js} +5 -5
  10. package/bundles/{chunk-4NU6EGYK.js → chunk-OU6LYZRL.js} +6 -6
  11. package/bundles/{chunk-CF2CT7RQ.js → chunk-SBDNBITT.js} +3 -3
  12. package/bundles/{chunk-7RPZKH3B.js → chunk-WL4F4VQG.js} +21 -21
  13. package/bundles/{chunk-JVASWB7F.js → chunk-XKEEWK6D.js} +31 -31
  14. package/bundles/index.js +13 -13
  15. package/bundles/linker/babel/index.js +13 -13
  16. package/bundles/linker/index.js +5 -5
  17. package/bundles/ngcc/index.js +1 -1
  18. package/bundles/private/bazel.js +1 -1
  19. package/bundles/private/localize.js +3 -3
  20. package/bundles/private/migrations.js +6 -6
  21. package/bundles/private/tooling.js +4 -4
  22. package/bundles/src/bin/ng_xi18n.js +11 -11
  23. package/bundles/src/bin/ngc.js +9 -9
  24. package/bundles_metadata.json +1 -1
  25. package/package.json +2 -2
  26. /package/bundles/{chunk-73XDHERB.js.map → chunk-3TE5ZM3R.js.map} +0 -0
  27. /package/bundles/{chunk-K2U2VZ7S.js.map → chunk-EC5K6QPP.js.map} +0 -0
  28. /package/bundles/{chunk-JCLVSACV.js.map → chunk-EK7UBJX3.js.map} +0 -0
  29. /package/bundles/{chunk-OULZQUKT.js.map → chunk-GYHDNUIK.js.map} +0 -0
  30. /package/bundles/{chunk-FYJ5FZGI.js.map → chunk-H4DJPYMT.js.map} +0 -0
  31. /package/bundles/{chunk-URH5LEAG.js.map → chunk-HJOPJLIM.js.map} +0 -0
  32. /package/bundles/{chunk-CBMWIHWP.js.map → chunk-N2IZWO7U.js.map} +0 -0
  33. /package/bundles/{chunk-4NU6EGYK.js.map → chunk-OU6LYZRL.js.map} +0 -0
  34. /package/bundles/{chunk-CF2CT7RQ.js.map → chunk-SBDNBITT.js.map} +0 -0
  35. /package/bundles/{chunk-7RPZKH3B.js.map → chunk-WL4F4VQG.js.map} +0 -0
  36. /package/bundles/{chunk-JVASWB7F.js.map → chunk-XKEEWK6D.js.map} +0 -0
@@ -6,7 +6,7 @@ import {
6
6
  __require
7
7
  } from "./chunk-SRFZMXHZ.js";
8
8
 
9
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
9
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/util.mjs
10
10
  var TS_DTS_JS_EXTENSION = /(?:\.d)?\.ts$|\.js$/;
11
11
  function normalizeSeparators(path) {
12
12
  return path.replace(/\\/g, "/");
@@ -22,7 +22,7 @@ function getSourceFileOrError(program, fileName) {
22
22
  return sf;
23
23
  }
24
24
 
25
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
25
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/invalid_file_system.mjs
26
26
  var InvalidFileSystem = class {
27
27
  exists(path) {
28
28
  throw makeError();
@@ -110,7 +110,7 @@ function makeError() {
110
110
  return new Error("FileSystem has not been configured. Please call `setFileSystem()` before calling this method.");
111
111
  }
112
112
 
113
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
113
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/helpers.mjs
114
114
  var fs = new InvalidFileSystem();
115
115
  function getFileSystem() {
116
116
  return fs;
@@ -167,7 +167,7 @@ function toRelativeImport(relativePath) {
167
167
  return isLocalRelativePath(relativePath) ? `./${relativePath}` : relativePath;
168
168
  }
169
169
 
170
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
170
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/compiler_host.mjs
171
171
  import * as os from "os";
172
172
  import ts from "typescript";
173
173
  var NgtscCompilerHost = class {
@@ -225,7 +225,7 @@ var NgtscCompilerHost = class {
225
225
  }
226
226
  };
227
227
 
228
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
228
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/logical.mjs
229
229
  var LogicalProjectPath = {
230
230
  relativePathBetween: function(from, to) {
231
231
  const relativePath = relative(dirname(resolve(from)), resolve(to));
@@ -271,7 +271,7 @@ function isWithinBasePath(base, path) {
271
271
  return isLocalRelativePath(relative(base, path));
272
272
  }
273
273
 
274
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
274
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/file_system/src/node_js_file_system.mjs
275
275
  import fs2 from "fs";
276
276
  import module from "module";
277
277
  import * as p from "path";
@@ -407,4 +407,4 @@ export {
407
407
  * Use of this source code is governed by an MIT-style license that can be
408
408
  * found in the LICENSE file at https://angular.io/license
409
409
  */
410
- //# sourceMappingURL=chunk-K2U2VZ7S.js.map
410
+ //# sourceMappingURL=chunk-EC5K6QPP.js.map
@@ -7,9 +7,9 @@ import {
7
7
  NoopImportRewriter,
8
8
  Reference,
9
9
  assertSuccessfulReferenceEmit
10
- } from "./chunk-7RPZKH3B.js";
10
+ } from "./chunk-WL4F4VQG.js";
11
11
 
12
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
12
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/context.mjs
13
13
  var Context = class {
14
14
  constructor(isStatement) {
15
15
  this.isStatement = isStatement;
@@ -22,7 +22,7 @@ var Context = class {
22
22
  }
23
23
  };
24
24
 
25
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
25
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/translator.mjs
26
26
  import * as o from "@angular/compiler";
27
27
  var UNARY_OPERATORS = /* @__PURE__ */ new Map([
28
28
  [o.UnaryOperator.Minus, "-"],
@@ -254,7 +254,7 @@ function createRange(span) {
254
254
  };
255
255
  }
256
256
 
257
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
257
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
258
258
  import ts from "typescript";
259
259
  var ImportManager = class {
260
260
  constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
@@ -290,7 +290,7 @@ var ImportManager = class {
290
290
  }
291
291
  };
292
292
 
293
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
293
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
294
294
  import * as o2 from "@angular/compiler";
295
295
  import ts2 from "typescript";
296
296
  function translateType(type, contextFile, reflector, refEmitter, imports) {
@@ -507,7 +507,7 @@ var TypeTranslatorVisitor = class {
507
507
  }
508
508
  };
509
509
 
510
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
510
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
511
511
  import ts3 from "typescript";
512
512
  var PureAnnotation;
513
513
  (function(PureAnnotation2) {
@@ -690,7 +690,7 @@ function attachComments(statement, leadingComments) {
690
690
  }
691
691
  }
692
692
 
693
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
693
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
694
694
  function translateExpression(expression, imports, options = {}) {
695
695
  return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
696
696
  }
@@ -713,4 +713,4 @@ export {
713
713
  * Use of this source code is governed by an MIT-style license that can be
714
714
  * found in the LICENSE file at https://angular.io/license
715
715
  */
716
- //# sourceMappingURL=chunk-JCLVSACV.js.map
716
+ //# sourceMappingURL=chunk-EK7UBJX3.js.map
@@ -3,11 +3,11 @@
3
3
  const require = __cjsCompatRequire(import.meta.url);
4
4
 
5
5
 
6
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
6
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
7
7
  import { decode, encode } from "@jridgewell/sourcemap-codec";
8
8
  import mapHelpers from "convert-source-map";
9
9
 
10
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.mjs
10
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/segment_marker.mjs
11
11
  function compareSegments(a, b) {
12
12
  return a.position - b.position;
13
13
  }
@@ -27,7 +27,7 @@ function offsetSegment(startOfLinePositions, marker, offset) {
27
27
  return { line, column, position, next: void 0 };
28
28
  }
29
29
 
30
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
30
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file.mjs
31
31
  function removeSourceMapComments(contents) {
32
32
  return mapHelpers.removeMapFileComments(mapHelpers.removeComments(contents)).replace(/\n\n$/, "\n");
33
33
  }
@@ -278,10 +278,10 @@ var Cache = class {
278
278
  }
279
279
  };
280
280
 
281
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
281
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
282
282
  import mapHelpers2 from "convert-source-map";
283
283
 
284
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.mjs
284
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/content_origin.mjs
285
285
  var ContentOrigin;
286
286
  (function(ContentOrigin2) {
287
287
  ContentOrigin2[ContentOrigin2["Provided"] = 0] = "Provided";
@@ -289,7 +289,7 @@ var ContentOrigin;
289
289
  ContentOrigin2[ContentOrigin2["FileSystem"] = 2] = "FileSystem";
290
290
  })(ContentOrigin || (ContentOrigin = {}));
291
291
 
292
- // bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
292
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/sourcemaps/src/source_file_loader.mjs
293
293
  var SCHEME_MATCHER = /^([a-z][a-z0-9.-]*):\/\//i;
294
294
  var SourceFileLoader = class {
295
295
  constructor(fs, logger, schemeMap) {
@@ -416,4 +416,4 @@ export {
416
416
  * Use of this source code is governed by an MIT-style license that can be
417
417
  * found in the LICENSE file at https://angular.io/license
418
418
  */
419
- //# sourceMappingURL=chunk-OULZQUKT.js.map
419
+ //# sourceMappingURL=chunk-GYHDNUIK.js.map