@angular/compiler-cli 17.1.0-next.2 → 17.1.0-next.3
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/bundles/{chunk-UHYH6BYB.js → chunk-3O3O4L34.js} +1 -1
- package/bundles/{chunk-54K5L6NG.js → chunk-5ASJ74IM.js} +30 -30
- package/bundles/{chunk-TNVYLY25.js → chunk-5JRMFWYO.js} +4 -4
- package/bundles/{chunk-SBDNBITT.js → chunk-CF2CT7RQ.js} +3 -3
- package/bundles/{chunk-OYL5JDZA.js → chunk-DV5CKGO6.js} +147 -122
- package/bundles/chunk-DV5CKGO6.js.map +6 -0
- package/bundles/{chunk-RLZPCAR3.js → chunk-EVIA54WP.js} +28 -27
- package/bundles/{chunk-RLZPCAR3.js.map → chunk-EVIA54WP.js.map} +1 -1
- package/bundles/{chunk-QPMYDNZG.js → chunk-I3M5LXMW.js} +7 -7
- package/bundles/{chunk-R4KQI5XI.js → chunk-JOIB3454.js} +5 -5
- package/bundles/{chunk-VOXK3NAL.js → chunk-LJKJD6DP.js} +77 -77
- package/bundles/{chunk-WCD6LVCP.js → chunk-WMUBJYYX.js} +7 -7
- package/bundles/{chunk-6GUXR7F5.js → chunk-XI2N3MV4.js} +11 -11
- package/bundles/{chunk-QWNQBN2Z.js → chunk-ZH5AJH3B.js} +5 -5
- package/bundles/index.js +13 -13
- package/bundles/linker/babel/index.js +13 -13
- package/bundles/linker/index.js +5 -5
- package/bundles/ngcc/index.js +1 -1
- package/bundles/private/bazel.js +1 -1
- package/bundles/private/localize.js +3 -3
- package/bundles/private/migrations.js +6 -6
- package/bundles/private/tooling.js +4 -4
- package/bundles/src/bin/ng_xi18n.js +11 -11
- package/bundles/src/bin/ngc.js +9 -9
- package/bundles_metadata.json +1 -1
- package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
- package/package.json +2 -2
- package/src/ngtsc/diagnostics/src/extended_template_diagnostic_name.d.ts +2 -1
- package/src/ngtsc/program_driver/src/ts_create_program_driver.d.ts +2 -1
- package/src/ngtsc/typecheck/api/api.d.ts +4 -0
- package/src/ngtsc/typecheck/extended/index.d.ts +1 -0
- package/src/ngtsc/typecheck/src/oob.d.ts +3 -2
- package/src/ngtsc/typecheck/src/type_check_block.d.ts +2 -1
- package/bundles/chunk-OYL5JDZA.js.map +0 -6
- /package/bundles/{chunk-UHYH6BYB.js.map → chunk-3O3O4L34.js.map} +0 -0
- /package/bundles/{chunk-54K5L6NG.js.map → chunk-5ASJ74IM.js.map} +0 -0
- /package/bundles/{chunk-TNVYLY25.js.map → chunk-5JRMFWYO.js.map} +0 -0
- /package/bundles/{chunk-SBDNBITT.js.map → chunk-CF2CT7RQ.js.map} +0 -0
- /package/bundles/{chunk-QPMYDNZG.js.map → chunk-I3M5LXMW.js.map} +0 -0
- /package/bundles/{chunk-R4KQI5XI.js.map → chunk-JOIB3454.js.map} +0 -0
- /package/bundles/{chunk-VOXK3NAL.js.map → chunk-LJKJD6DP.js.map} +0 -0
- /package/bundles/{chunk-WCD6LVCP.js.map → chunk-WMUBJYYX.js.map} +0 -0
- /package/bundles/{chunk-6GUXR7F5.js.map → chunk-XI2N3MV4.js.map} +0 -0
- /package/bundles/{chunk-QWNQBN2Z.js.map → chunk-ZH5AJH3B.js.map} +0 -0
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
const require = __cjsCompatRequire(import.meta.url);
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
// bazel-out/
|
|
6
|
+
// bazel-out/darwin-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/
|
|
10
|
+
// bazel-out/darwin-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/
|
|
30
|
+
// bazel-out/darwin-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/
|
|
281
|
+
// bazel-out/darwin-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/
|
|
284
|
+
// bazel-out/darwin-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/
|
|
292
|
+
// bazel-out/darwin-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-
|
|
419
|
+
//# sourceMappingURL=chunk-WMUBJYYX.js.map
|
|
@@ -7,9 +7,9 @@ import {
|
|
|
7
7
|
NoopImportRewriter,
|
|
8
8
|
Reference,
|
|
9
9
|
assertSuccessfulReferenceEmit
|
|
10
|
-
} from "./chunk-
|
|
10
|
+
} from "./chunk-EVIA54WP.js";
|
|
11
11
|
|
|
12
|
-
// bazel-out/
|
|
12
|
+
// bazel-out/darwin-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/
|
|
25
|
+
// bazel-out/darwin-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, "-"],
|
|
@@ -260,7 +260,7 @@ function createRange(span) {
|
|
|
260
260
|
};
|
|
261
261
|
}
|
|
262
262
|
|
|
263
|
-
// bazel-out/
|
|
263
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/import_manager.mjs
|
|
264
264
|
import ts from "typescript";
|
|
265
265
|
var ImportManager = class {
|
|
266
266
|
constructor(rewriter = new NoopImportRewriter(), prefix = "i") {
|
|
@@ -296,7 +296,7 @@ var ImportManager = class {
|
|
|
296
296
|
}
|
|
297
297
|
};
|
|
298
298
|
|
|
299
|
-
// bazel-out/
|
|
299
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_emitter.mjs
|
|
300
300
|
import ts2 from "typescript";
|
|
301
301
|
var INELIGIBLE = {};
|
|
302
302
|
function canEmitType(type, canEmit) {
|
|
@@ -371,11 +371,11 @@ var TypeEmitter = class {
|
|
|
371
371
|
}
|
|
372
372
|
};
|
|
373
373
|
|
|
374
|
-
// bazel-out/
|
|
374
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
375
375
|
import * as o2 from "@angular/compiler";
|
|
376
376
|
import ts4 from "typescript";
|
|
377
377
|
|
|
378
|
-
// bazel-out/
|
|
378
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/ts_util.mjs
|
|
379
379
|
import ts3 from "typescript";
|
|
380
380
|
function tsNumericExpression(value) {
|
|
381
381
|
if (value < 0) {
|
|
@@ -385,7 +385,7 @@ function tsNumericExpression(value) {
|
|
|
385
385
|
return ts3.factory.createNumericLiteral(value);
|
|
386
386
|
}
|
|
387
387
|
|
|
388
|
-
// bazel-out/
|
|
388
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/type_translator.mjs
|
|
389
389
|
function translateType(type, contextFile, reflector, refEmitter, imports) {
|
|
390
390
|
return type.visitType(new TypeTranslatorVisitor(imports, contextFile, reflector, refEmitter), new Context(false));
|
|
391
391
|
}
|
|
@@ -599,7 +599,7 @@ var TypeTranslatorVisitor = class {
|
|
|
599
599
|
}
|
|
600
600
|
};
|
|
601
601
|
|
|
602
|
-
// bazel-out/
|
|
602
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_ast_factory.mjs
|
|
603
603
|
import ts5 from "typescript";
|
|
604
604
|
var PureAnnotation;
|
|
605
605
|
(function(PureAnnotation2) {
|
|
@@ -795,7 +795,7 @@ function attachComments(statement, leadingComments) {
|
|
|
795
795
|
}
|
|
796
796
|
}
|
|
797
797
|
|
|
798
|
-
// bazel-out/
|
|
798
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/translator/src/typescript_translator.mjs
|
|
799
799
|
function translateExpression(expression, imports, options = {}) {
|
|
800
800
|
return expression.visitExpression(new ExpressionTranslatorVisitor(new TypeScriptAstFactory(options.annotateForClosureCompiler === true), imports, options), new Context(false));
|
|
801
801
|
}
|
|
@@ -827,4 +827,4 @@ export {
|
|
|
827
827
|
* Use of this source code is governed by an MIT-style license that can be
|
|
828
828
|
* found in the LICENSE file at https://angular.io/license
|
|
829
829
|
*/
|
|
830
|
-
//# sourceMappingURL=chunk-
|
|
830
|
+
//# sourceMappingURL=chunk-XI2N3MV4.js.map
|
|
@@ -12,13 +12,13 @@ import {
|
|
|
12
12
|
formatDiagnostics,
|
|
13
13
|
performCompilation,
|
|
14
14
|
readConfiguration
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-DV5CKGO6.js";
|
|
16
16
|
|
|
17
|
-
// bazel-out/
|
|
17
|
+
// bazel-out/darwin-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/
|
|
21
|
+
// bazel-out/darwin-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/
|
|
237
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/main.mjs
|
|
238
238
|
function main(args, consoleError = console.error, config, customTransformers, programReuse, modifiedResourceFiles) {
|
|
239
239
|
let { project, rootNames, options, errors: configErrors, watch: watch2, emitFlags } = config || readNgcCommandLineAndConfiguration(args);
|
|
240
240
|
if (configErrors.length) {
|
|
@@ -342,4 +342,4 @@ export {
|
|
|
342
342
|
* Use of this source code is governed by an MIT-style license that can be
|
|
343
343
|
* found in the LICENSE file at https://angular.io/license
|
|
344
344
|
*/
|
|
345
|
-
//# sourceMappingURL=chunk-
|
|
345
|
+
//# sourceMappingURL=chunk-ZH5AJH3B.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-
|
|
9
|
+
} from "./chunk-5JRMFWYO.js";
|
|
10
10
|
import {
|
|
11
11
|
DEFAULT_ERROR_CODE,
|
|
12
12
|
DecoratorType,
|
|
@@ -33,21 +33,21 @@ import {
|
|
|
33
33
|
performCompilation,
|
|
34
34
|
readConfiguration,
|
|
35
35
|
untagAllTsFiles
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-DV5CKGO6.js";
|
|
37
37
|
import {
|
|
38
38
|
OptimizeFor
|
|
39
|
-
} from "./chunk-
|
|
40
|
-
import "./chunk-
|
|
41
|
-
import "./chunk-
|
|
42
|
-
import "./chunk-
|
|
39
|
+
} from "./chunk-LJKJD6DP.js";
|
|
40
|
+
import "./chunk-3O3O4L34.js";
|
|
41
|
+
import "./chunk-XI2N3MV4.js";
|
|
42
|
+
import "./chunk-EVIA54WP.js";
|
|
43
43
|
import {
|
|
44
44
|
ActivePerfRecorder,
|
|
45
45
|
PerfPhase
|
|
46
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-JOIB3454.js";
|
|
47
47
|
import {
|
|
48
48
|
ConsoleLogger,
|
|
49
49
|
LogLevel
|
|
50
|
-
} from "./chunk-
|
|
50
|
+
} from "./chunk-CF2CT7RQ.js";
|
|
51
51
|
import {
|
|
52
52
|
LogicalFileSystem,
|
|
53
53
|
LogicalProjectPath,
|
|
@@ -68,14 +68,14 @@ import {
|
|
|
68
68
|
resolve,
|
|
69
69
|
setFileSystem,
|
|
70
70
|
toRelativeImport
|
|
71
|
-
} from "./chunk-
|
|
71
|
+
} from "./chunk-I3M5LXMW.js";
|
|
72
72
|
import "./chunk-XI2RTGAL.js";
|
|
73
73
|
|
|
74
|
-
// bazel-out/
|
|
74
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
75
75
|
import { Version } from "@angular/compiler";
|
|
76
|
-
var VERSION = new Version("17.1.0-next.
|
|
76
|
+
var VERSION = new Version("17.1.0-next.3");
|
|
77
77
|
|
|
78
|
-
// bazel-out/
|
|
78
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
|
|
79
79
|
var NgTscPlugin = class {
|
|
80
80
|
get compiler() {
|
|
81
81
|
if (this._compiler === null) {
|
|
@@ -152,7 +152,7 @@ var NgTscPlugin = class {
|
|
|
152
152
|
}
|
|
153
153
|
};
|
|
154
154
|
|
|
155
|
-
// bazel-out/
|
|
155
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
156
156
|
setFileSystem(new NodeJSFileSystem());
|
|
157
157
|
export {
|
|
158
158
|
ConsoleLogger,
|
|
@@ -8,23 +8,23 @@ import {
|
|
|
8
8
|
LinkerEnvironment,
|
|
9
9
|
assert,
|
|
10
10
|
isFatalLinkerError
|
|
11
|
-
} from "../../chunk-
|
|
12
|
-
import "../../chunk-
|
|
13
|
-
import "../../chunk-
|
|
11
|
+
} from "../../chunk-5ASJ74IM.js";
|
|
12
|
+
import "../../chunk-XI2N3MV4.js";
|
|
13
|
+
import "../../chunk-EVIA54WP.js";
|
|
14
14
|
import {
|
|
15
15
|
ConsoleLogger,
|
|
16
16
|
LogLevel
|
|
17
|
-
} from "../../chunk-
|
|
18
|
-
import "../../chunk-
|
|
17
|
+
} from "../../chunk-CF2CT7RQ.js";
|
|
18
|
+
import "../../chunk-WMUBJYYX.js";
|
|
19
19
|
import {
|
|
20
20
|
NodeJSFileSystem
|
|
21
|
-
} from "../../chunk-
|
|
21
|
+
} from "../../chunk-I3M5LXMW.js";
|
|
22
22
|
import "../../chunk-XI2RTGAL.js";
|
|
23
23
|
|
|
24
|
-
// bazel-out/
|
|
24
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
|
|
25
25
|
import { types as t4 } from "@babel/core";
|
|
26
26
|
|
|
27
|
-
// bazel-out/
|
|
27
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_factory.mjs
|
|
28
28
|
import { types as t } from "@babel/core";
|
|
29
29
|
var BabelAstFactory = class {
|
|
30
30
|
constructor(sourceUrl) {
|
|
@@ -147,7 +147,7 @@ function isLExpression(expr) {
|
|
|
147
147
|
return t.isLVal(expr);
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
// bazel-out/
|
|
150
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_host.mjs
|
|
151
151
|
import { types as t2 } from "@babel/core";
|
|
152
152
|
var BabelAstHost = class {
|
|
153
153
|
constructor() {
|
|
@@ -265,7 +265,7 @@ function isMinifiedBooleanLiteral(node) {
|
|
|
265
265
|
return t2.isUnaryExpression(node) && node.prefix && node.operator === "!" && t2.isNumericLiteral(node.argument) && (node.argument.value === 0 || node.argument.value === 1);
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
-
// bazel-out/
|
|
268
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_declaration_scope.mjs
|
|
269
269
|
import { types as t3 } from "@babel/core";
|
|
270
270
|
var BabelDeclarationScope = class {
|
|
271
271
|
constructor(declarationScope) {
|
|
@@ -291,7 +291,7 @@ var BabelDeclarationScope = class {
|
|
|
291
291
|
}
|
|
292
292
|
};
|
|
293
293
|
|
|
294
|
-
// bazel-out/
|
|
294
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
|
|
295
295
|
function createEs2015LinkerPlugin({ fileSystem, logger, ...options }) {
|
|
296
296
|
let fileLinker = null;
|
|
297
297
|
return {
|
|
@@ -392,7 +392,7 @@ function buildCodeFrameError(file, message, node) {
|
|
|
392
392
|
return `${filename}: ${error.message}`;
|
|
393
393
|
}
|
|
394
394
|
|
|
395
|
-
// bazel-out/
|
|
395
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_plugin.mjs
|
|
396
396
|
function defaultLinkerPlugin(api, options) {
|
|
397
397
|
api.assertVersion(7);
|
|
398
398
|
return createEs2015LinkerPlugin({
|
|
@@ -402,7 +402,7 @@ function defaultLinkerPlugin(api, options) {
|
|
|
402
402
|
});
|
|
403
403
|
}
|
|
404
404
|
|
|
405
|
-
// bazel-out/
|
|
405
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/linker/babel/index.mjs
|
|
406
406
|
var babel_default = defaultLinkerPlugin;
|
|
407
407
|
export {
|
|
408
408
|
createEs2015LinkerPlugin,
|
package/bundles/linker/index.js
CHANGED
|
@@ -10,11 +10,11 @@ import {
|
|
|
10
10
|
assert,
|
|
11
11
|
isFatalLinkerError,
|
|
12
12
|
needsLinking
|
|
13
|
-
} from "../chunk-
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
16
|
-
import "../chunk-
|
|
17
|
-
import "../chunk-
|
|
13
|
+
} from "../chunk-5ASJ74IM.js";
|
|
14
|
+
import "../chunk-XI2N3MV4.js";
|
|
15
|
+
import "../chunk-EVIA54WP.js";
|
|
16
|
+
import "../chunk-WMUBJYYX.js";
|
|
17
|
+
import "../chunk-I3M5LXMW.js";
|
|
18
18
|
import "../chunk-XI2RTGAL.js";
|
|
19
19
|
export {
|
|
20
20
|
DEFAULT_LINKER_OPTIONS,
|
package/bundles/ngcc/index.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
const require = __cjsCompatRequire(import.meta.url);
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
// bazel-out/
|
|
7
|
+
// bazel-out/darwin-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 = "";
|
package/bundles/private/bazel.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
import {
|
|
6
6
|
ConsoleLogger,
|
|
7
7
|
LogLevel
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-CF2CT7RQ.js";
|
|
9
9
|
import {
|
|
10
10
|
SourceFile,
|
|
11
11
|
SourceFileLoader
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-WMUBJYYX.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-
|
|
33
|
+
} from "../chunk-I3M5LXMW.js";
|
|
34
34
|
import "../chunk-XI2RTGAL.js";
|
|
35
35
|
export {
|
|
36
36
|
ConsoleLogger,
|
|
@@ -9,16 +9,16 @@ import {
|
|
|
9
9
|
PotentialImportMode,
|
|
10
10
|
StaticInterpreter,
|
|
11
11
|
forwardRefResolver
|
|
12
|
-
} from "../chunk-
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
12
|
+
} from "../chunk-LJKJD6DP.js";
|
|
13
|
+
import "../chunk-3O3O4L34.js";
|
|
14
|
+
import "../chunk-XI2N3MV4.js";
|
|
15
15
|
import {
|
|
16
16
|
Reference,
|
|
17
17
|
TypeScriptReflectionHost,
|
|
18
18
|
reflectObjectLiteral
|
|
19
|
-
} from "../chunk-
|
|
20
|
-
import "../chunk-
|
|
21
|
-
import "../chunk-
|
|
19
|
+
} from "../chunk-EVIA54WP.js";
|
|
20
|
+
import "../chunk-JOIB3454.js";
|
|
21
|
+
import "../chunk-I3M5LXMW.js";
|
|
22
22
|
import "../chunk-XI2RTGAL.js";
|
|
23
23
|
export {
|
|
24
24
|
DynamicValue,
|
|
@@ -6,10 +6,10 @@ import {
|
|
|
6
6
|
GLOBAL_DEFS_FOR_TERSER,
|
|
7
7
|
GLOBAL_DEFS_FOR_TERSER_WITH_AOT,
|
|
8
8
|
constructorParametersDownlevelTransform
|
|
9
|
-
} from "../chunk-
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
12
|
-
import "../chunk-
|
|
9
|
+
} from "../chunk-5JRMFWYO.js";
|
|
10
|
+
import "../chunk-3O3O4L34.js";
|
|
11
|
+
import "../chunk-EVIA54WP.js";
|
|
12
|
+
import "../chunk-I3M5LXMW.js";
|
|
13
13
|
import "../chunk-XI2RTGAL.js";
|
|
14
14
|
export {
|
|
15
15
|
GLOBAL_DEFS_FOR_TERSER,
|
|
@@ -6,25 +6,25 @@
|
|
|
6
6
|
import {
|
|
7
7
|
main,
|
|
8
8
|
readCommandLineAndConfiguration
|
|
9
|
-
} from "../../chunk-
|
|
9
|
+
} from "../../chunk-ZH5AJH3B.js";
|
|
10
10
|
import {
|
|
11
11
|
EmitFlags
|
|
12
|
-
} from "../../chunk-
|
|
13
|
-
import "../../chunk-
|
|
14
|
-
import "../../chunk-
|
|
15
|
-
import "../../chunk-
|
|
16
|
-
import "../../chunk-
|
|
17
|
-
import "../../chunk-
|
|
12
|
+
} from "../../chunk-DV5CKGO6.js";
|
|
13
|
+
import "../../chunk-LJKJD6DP.js";
|
|
14
|
+
import "../../chunk-3O3O4L34.js";
|
|
15
|
+
import "../../chunk-XI2N3MV4.js";
|
|
16
|
+
import "../../chunk-EVIA54WP.js";
|
|
17
|
+
import "../../chunk-JOIB3454.js";
|
|
18
18
|
import {
|
|
19
19
|
NodeJSFileSystem,
|
|
20
20
|
setFileSystem
|
|
21
|
-
} from "../../chunk-
|
|
21
|
+
} from "../../chunk-I3M5LXMW.js";
|
|
22
22
|
import "../../chunk-XI2RTGAL.js";
|
|
23
23
|
|
|
24
|
-
// bazel-out/
|
|
24
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
|
|
25
25
|
import "reflect-metadata";
|
|
26
26
|
|
|
27
|
-
// bazel-out/
|
|
27
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/extract_i18n.mjs
|
|
28
28
|
import yargs from "yargs";
|
|
29
29
|
function mainXi18n(args2, consoleError = console.error) {
|
|
30
30
|
const config = readXi18nCommandLineAndConfiguration(args2);
|
|
@@ -47,7 +47,7 @@ function readXi18nCommandLineAndConfiguration(args2) {
|
|
|
47
47
|
return { ...config, emitFlags: EmitFlags.I18nBundle };
|
|
48
48
|
}
|
|
49
49
|
|
|
50
|
-
// bazel-out/
|
|
50
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/bin/ng_xi18n.mjs
|
|
51
51
|
process.title = "Angular i18n Message Extractor (ng-xi18n)";
|
|
52
52
|
var args = process.argv.slice(2);
|
|
53
53
|
setFileSystem(new NodeJSFileSystem());
|
package/bundles/src/bin/ngc.js
CHANGED
|
@@ -5,20 +5,20 @@
|
|
|
5
5
|
|
|
6
6
|
import {
|
|
7
7
|
main
|
|
8
|
-
} from "../../chunk-
|
|
9
|
-
import "../../chunk-
|
|
10
|
-
import "../../chunk-
|
|
11
|
-
import "../../chunk-
|
|
12
|
-
import "../../chunk-
|
|
13
|
-
import "../../chunk-
|
|
14
|
-
import "../../chunk-
|
|
8
|
+
} from "../../chunk-ZH5AJH3B.js";
|
|
9
|
+
import "../../chunk-DV5CKGO6.js";
|
|
10
|
+
import "../../chunk-LJKJD6DP.js";
|
|
11
|
+
import "../../chunk-3O3O4L34.js";
|
|
12
|
+
import "../../chunk-XI2N3MV4.js";
|
|
13
|
+
import "../../chunk-EVIA54WP.js";
|
|
14
|
+
import "../../chunk-JOIB3454.js";
|
|
15
15
|
import {
|
|
16
16
|
NodeJSFileSystem,
|
|
17
17
|
setFileSystem
|
|
18
|
-
} from "../../chunk-
|
|
18
|
+
} from "../../chunk-I3M5LXMW.js";
|
|
19
19
|
import "../../chunk-XI2RTGAL.js";
|
|
20
20
|
|
|
21
|
-
// bazel-out/
|
|
21
|
+
// bazel-out/darwin-fastbuild/bin/packages/compiler-cli/src/bin/ngc.mjs
|
|
22
22
|
import "reflect-metadata";
|
|
23
23
|
async function runNgcComamnd() {
|
|
24
24
|
process.title = "Angular Compiler (ngc)";
|