@angular/compiler-cli 19.2.15 → 19.2.17
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-TBVHQD5I.js → chunk-2PYABK44.js} +12 -12
- package/bundles/{chunk-2BEPK62B.js → chunk-6JLQ22O6.js} +42 -42
- package/bundles/{chunk-D7R5IUYZ.js → chunk-BSAOKZSO.js} +125 -125
- package/bundles/{chunk-VLERTDN5.js → chunk-ERYCP7NI.js} +8 -8
- package/bundles/{chunk-SEKYV57I.js → chunk-H5Y7P5GQ.js} +3 -3
- package/bundles/{chunk-ODOQAUXK.js → chunk-LHXVN5NW.js} +31 -31
- package/bundles/{chunk-PML5JK7B.js → chunk-NVYT6OPE.js} +7 -7
- package/bundles/{chunk-DM3NCMH5.js → chunk-U2T5FMHX.js} +81 -81
- package/bundles/{chunk-26NO4MZH.js → chunk-WUCT7QTW.js} +5 -5
- package/bundles/{chunk-75G4WXBH.js → chunk-Y7CS6SFM.js} +3 -3
- package/bundles/{chunk-7MFRAVPH.js → chunk-ZVOTQFMG.js} +5 -5
- package/bundles/index.js +12 -12
- package/bundles/linker/babel/index.js +12 -12
- package/bundles/linker/index.js +4 -4
- 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 +4 -4
- package/bundles/private/tooling.js +6 -6
- package/bundles/src/bin/ng_xi18n.js +10 -10
- package/bundles/src/bin/ngc.js +8 -8
- package/linker/src/file_linker/partial_linkers/util.d.ts +1 -1
- package/package.json +2 -2
- /package/bundles/{chunk-TBVHQD5I.js.map → chunk-2PYABK44.js.map} +0 -0
- /package/bundles/{chunk-2BEPK62B.js.map → chunk-6JLQ22O6.js.map} +0 -0
- /package/bundles/{chunk-D7R5IUYZ.js.map → chunk-BSAOKZSO.js.map} +0 -0
- /package/bundles/{chunk-VLERTDN5.js.map → chunk-ERYCP7NI.js.map} +0 -0
- /package/bundles/{chunk-SEKYV57I.js.map → chunk-H5Y7P5GQ.js.map} +0 -0
- /package/bundles/{chunk-ODOQAUXK.js.map → chunk-LHXVN5NW.js.map} +0 -0
- /package/bundles/{chunk-PML5JK7B.js.map → chunk-NVYT6OPE.js.map} +0 -0
- /package/bundles/{chunk-DM3NCMH5.js.map → chunk-U2T5FMHX.js.map} +0 -0
- /package/bundles/{chunk-26NO4MZH.js.map → chunk-WUCT7QTW.js.map} +0 -0
- /package/bundles/{chunk-75G4WXBH.js.map → chunk-Y7CS6SFM.js.map} +0 -0
- /package/bundles/{chunk-7MFRAVPH.js.map → chunk-ZVOTQFMG.js.map} +0 -0
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
const require = __cjsCompatRequire(import.meta.url);
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
// bazel-out/
|
|
6
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/api.js
|
|
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/
|
|
76
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/noop.js
|
|
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/
|
|
93
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/clock.js
|
|
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/
|
|
102
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/perf/src/recorder.js
|
|
103
103
|
var ActivePerfRecorder = class {
|
|
104
104
|
zeroTime;
|
|
105
105
|
counters;
|
|
@@ -213,4 +213,4 @@ export {
|
|
|
213
213
|
* Use of this source code is governed by an MIT-style license that can be
|
|
214
214
|
* found in the LICENSE file at https://angular.dev/license
|
|
215
215
|
*/
|
|
216
|
-
//# sourceMappingURL=chunk-
|
|
216
|
+
//# sourceMappingURL=chunk-WUCT7QTW.js.map
|
|
@@ -4,9 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
import {
|
|
6
6
|
angularJitApplicationTransform
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-2PYABK44.js";
|
|
8
8
|
|
|
9
|
-
// bazel-out/
|
|
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-
|
|
34
|
+
//# sourceMappingURL=chunk-Y7CS6SFM.js.map
|
|
@@ -12,13 +12,13 @@ import {
|
|
|
12
12
|
formatDiagnostics,
|
|
13
13
|
performCompilation,
|
|
14
14
|
readConfiguration
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-U2T5FMHX.js";
|
|
16
16
|
|
|
17
|
-
// bazel-out/
|
|
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/
|
|
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/
|
|
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-
|
|
366
|
+
//# sourceMappingURL=chunk-ZVOTQFMG.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-Y7CS6SFM.js";
|
|
10
10
|
import {
|
|
11
11
|
DEFAULT_ERROR_CODE,
|
|
12
12
|
DecoratorType,
|
|
@@ -33,29 +33,29 @@ import {
|
|
|
33
33
|
isTsDiagnostic,
|
|
34
34
|
performCompilation,
|
|
35
35
|
readConfiguration
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-U2T5FMHX.js";
|
|
37
37
|
import {
|
|
38
38
|
angularJitApplicationTransform,
|
|
39
39
|
getDownlevelDecoratorsTransform,
|
|
40
40
|
getInitializerApiJitTransform
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-2PYABK44.js";
|
|
42
42
|
import {
|
|
43
43
|
OptimizeFor,
|
|
44
44
|
TsCreateProgramDriver
|
|
45
|
-
} from "./chunk-
|
|
45
|
+
} from "./chunk-BSAOKZSO.js";
|
|
46
46
|
import {
|
|
47
47
|
ErrorCode,
|
|
48
48
|
isLocalCompilationDiagnostics,
|
|
49
49
|
ngErrorCode
|
|
50
|
-
} from "./chunk-
|
|
50
|
+
} from "./chunk-6JLQ22O6.js";
|
|
51
51
|
import {
|
|
52
52
|
ActivePerfRecorder,
|
|
53
53
|
PerfPhase
|
|
54
|
-
} from "./chunk-
|
|
54
|
+
} from "./chunk-WUCT7QTW.js";
|
|
55
55
|
import {
|
|
56
56
|
ConsoleLogger,
|
|
57
57
|
LogLevel
|
|
58
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-H5Y7P5GQ.js";
|
|
59
59
|
import {
|
|
60
60
|
InvalidFileSystem,
|
|
61
61
|
LogicalFileSystem,
|
|
@@ -78,14 +78,14 @@ import {
|
|
|
78
78
|
resolve,
|
|
79
79
|
setFileSystem,
|
|
80
80
|
toRelativeImport
|
|
81
|
-
} from "./chunk-
|
|
81
|
+
} from "./chunk-ERYCP7NI.js";
|
|
82
82
|
import "./chunk-KPQ72R34.js";
|
|
83
83
|
|
|
84
|
-
// bazel-out/
|
|
84
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
85
85
|
import { Version } from "@angular/compiler";
|
|
86
|
-
var VERSION = new Version("19.2.
|
|
86
|
+
var VERSION = new Version("19.2.17");
|
|
87
87
|
|
|
88
|
-
// bazel-out/
|
|
88
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
|
|
89
89
|
var NgTscPlugin = class {
|
|
90
90
|
ngOptions;
|
|
91
91
|
name = "ngtsc";
|
|
@@ -162,7 +162,7 @@ var NgTscPlugin = class {
|
|
|
162
162
|
}
|
|
163
163
|
};
|
|
164
164
|
|
|
165
|
-
// bazel-out/
|
|
165
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/index.mjs
|
|
166
166
|
setFileSystem(new NodeJSFileSystem());
|
|
167
167
|
export {
|
|
168
168
|
ConsoleLogger,
|
|
@@ -8,22 +8,22 @@ import {
|
|
|
8
8
|
LinkerEnvironment,
|
|
9
9
|
assert,
|
|
10
10
|
isFatalLinkerError
|
|
11
|
-
} from "../../chunk-
|
|
12
|
-
import "../../chunk-
|
|
11
|
+
} from "../../chunk-LHXVN5NW.js";
|
|
12
|
+
import "../../chunk-6JLQ22O6.js";
|
|
13
13
|
import {
|
|
14
14
|
ConsoleLogger,
|
|
15
15
|
LogLevel
|
|
16
|
-
} from "../../chunk-
|
|
17
|
-
import "../../chunk-
|
|
16
|
+
} from "../../chunk-H5Y7P5GQ.js";
|
|
17
|
+
import "../../chunk-NVYT6OPE.js";
|
|
18
18
|
import {
|
|
19
19
|
NodeJSFileSystem
|
|
20
|
-
} from "../../chunk-
|
|
20
|
+
} from "../../chunk-ERYCP7NI.js";
|
|
21
21
|
import "../../chunk-KPQ72R34.js";
|
|
22
22
|
|
|
23
|
-
// bazel-out/
|
|
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/
|
|
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
|
sourceUrl;
|
|
@@ -152,7 +152,7 @@ function isLExpression(expr) {
|
|
|
152
152
|
return t.isLVal(expr);
|
|
153
153
|
}
|
|
154
154
|
|
|
155
|
-
// bazel-out/
|
|
155
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/ast/babel_ast_host.mjs
|
|
156
156
|
import { types as t2 } from "@babel/core";
|
|
157
157
|
var BabelAstHost = class {
|
|
158
158
|
getSymbolName(node) {
|
|
@@ -278,7 +278,7 @@ function isMinifiedBooleanLiteral(node) {
|
|
|
278
278
|
return t2.isUnaryExpression(node) && node.prefix && node.operator === "!" && t2.isNumericLiteral(node.argument) && (node.argument.value === 0 || node.argument.value === 1);
|
|
279
279
|
}
|
|
280
280
|
|
|
281
|
-
// bazel-out/
|
|
281
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_declaration_scope.mjs
|
|
282
282
|
import { types as t3 } from "@babel/core";
|
|
283
283
|
var BabelDeclarationScope = class {
|
|
284
284
|
declarationScope;
|
|
@@ -305,7 +305,7 @@ var BabelDeclarationScope = class {
|
|
|
305
305
|
}
|
|
306
306
|
};
|
|
307
307
|
|
|
308
|
-
// bazel-out/
|
|
308
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/es2015_linker_plugin.mjs
|
|
309
309
|
function createEs2015LinkerPlugin({ fileSystem, logger, ...options }) {
|
|
310
310
|
let fileLinker = null;
|
|
311
311
|
return {
|
|
@@ -406,7 +406,7 @@ function buildCodeFrameError(file, message, node) {
|
|
|
406
406
|
return `${filename}: ${error.message}`;
|
|
407
407
|
}
|
|
408
408
|
|
|
409
|
-
// bazel-out/
|
|
409
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/src/babel_plugin.mjs
|
|
410
410
|
function defaultLinkerPlugin(api, options) {
|
|
411
411
|
api.assertVersion(7);
|
|
412
412
|
return createEs2015LinkerPlugin({
|
|
@@ -416,7 +416,7 @@ function defaultLinkerPlugin(api, options) {
|
|
|
416
416
|
});
|
|
417
417
|
}
|
|
418
418
|
|
|
419
|
-
// bazel-out/
|
|
419
|
+
// bazel-out/darwin_arm64-fastbuild/bin/packages/compiler-cli/linker/babel/index.mjs
|
|
420
420
|
var babel_default = defaultLinkerPlugin;
|
|
421
421
|
export {
|
|
422
422
|
createEs2015LinkerPlugin,
|
package/bundles/linker/index.js
CHANGED
|
@@ -10,10 +10,10 @@ import {
|
|
|
10
10
|
assert,
|
|
11
11
|
isFatalLinkerError,
|
|
12
12
|
needsLinking
|
|
13
|
-
} from "../chunk-
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
16
|
-
import "../chunk-
|
|
13
|
+
} from "../chunk-LHXVN5NW.js";
|
|
14
|
+
import "../chunk-6JLQ22O6.js";
|
|
15
|
+
import "../chunk-NVYT6OPE.js";
|
|
16
|
+
import "../chunk-ERYCP7NI.js";
|
|
17
17
|
import "../chunk-KPQ72R34.js";
|
|
18
18
|
export {
|
|
19
19
|
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_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 = "";
|
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-H5Y7P5GQ.js";
|
|
9
9
|
import {
|
|
10
10
|
SourceFile,
|
|
11
11
|
SourceFileLoader
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-NVYT6OPE.js";
|
|
13
13
|
import {
|
|
14
14
|
InvalidFileSystem,
|
|
15
15
|
LogicalFileSystem,
|
|
@@ -32,7 +32,7 @@ import {
|
|
|
32
32
|
resolve,
|
|
33
33
|
setFileSystem,
|
|
34
34
|
toRelativeImport
|
|
35
|
-
} from "../chunk-
|
|
35
|
+
} from "../chunk-ERYCP7NI.js";
|
|
36
36
|
import "../chunk-KPQ72R34.js";
|
|
37
37
|
export {
|
|
38
38
|
ConsoleLogger,
|
|
@@ -9,15 +9,15 @@ import {
|
|
|
9
9
|
PotentialImportMode,
|
|
10
10
|
StaticInterpreter,
|
|
11
11
|
createForwardRefResolver
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-BSAOKZSO.js";
|
|
13
13
|
import {
|
|
14
14
|
ImportManager,
|
|
15
15
|
Reference,
|
|
16
16
|
TypeScriptReflectionHost,
|
|
17
17
|
reflectObjectLiteral
|
|
18
|
-
} from "../chunk-
|
|
19
|
-
import "../chunk-
|
|
20
|
-
import "../chunk-
|
|
18
|
+
} from "../chunk-6JLQ22O6.js";
|
|
19
|
+
import "../chunk-WUCT7QTW.js";
|
|
20
|
+
import "../chunk-ERYCP7NI.js";
|
|
21
21
|
import "../chunk-KPQ72R34.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-
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
12
|
-
import "../chunk-
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
9
|
+
} from "../chunk-Y7CS6SFM.js";
|
|
10
|
+
import "../chunk-2PYABK44.js";
|
|
11
|
+
import "../chunk-BSAOKZSO.js";
|
|
12
|
+
import "../chunk-6JLQ22O6.js";
|
|
13
|
+
import "../chunk-WUCT7QTW.js";
|
|
14
|
+
import "../chunk-ERYCP7NI.js";
|
|
15
15
|
import "../chunk-KPQ72R34.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-
|
|
9
|
+
} from "../../chunk-ZVOTQFMG.js";
|
|
10
10
|
import {
|
|
11
11
|
EmitFlags
|
|
12
|
-
} from "../../chunk-
|
|
13
|
-
import "../../chunk-
|
|
14
|
-
import "../../chunk-
|
|
15
|
-
import "../../chunk-
|
|
16
|
-
import "../../chunk-
|
|
12
|
+
} from "../../chunk-U2T5FMHX.js";
|
|
13
|
+
import "../../chunk-2PYABK44.js";
|
|
14
|
+
import "../../chunk-BSAOKZSO.js";
|
|
15
|
+
import "../../chunk-6JLQ22O6.js";
|
|
16
|
+
import "../../chunk-WUCT7QTW.js";
|
|
17
17
|
import {
|
|
18
18
|
NodeJSFileSystem,
|
|
19
19
|
setFileSystem
|
|
20
|
-
} from "../../chunk-
|
|
20
|
+
} from "../../chunk-ERYCP7NI.js";
|
|
21
21
|
import "../../chunk-KPQ72R34.js";
|
|
22
22
|
|
|
23
|
-
// bazel-out/
|
|
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/
|
|
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/
|
|
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());
|
package/bundles/src/bin/ngc.js
CHANGED
|
@@ -5,19 +5,19 @@
|
|
|
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-
|
|
8
|
+
} from "../../chunk-ZVOTQFMG.js";
|
|
9
|
+
import "../../chunk-U2T5FMHX.js";
|
|
10
|
+
import "../../chunk-2PYABK44.js";
|
|
11
|
+
import "../../chunk-BSAOKZSO.js";
|
|
12
|
+
import "../../chunk-6JLQ22O6.js";
|
|
13
|
+
import "../../chunk-WUCT7QTW.js";
|
|
14
14
|
import {
|
|
15
15
|
NodeJSFileSystem,
|
|
16
16
|
setFileSystem
|
|
17
|
-
} from "../../chunk-
|
|
17
|
+
} from "../../chunk-ERYCP7NI.js";
|
|
18
18
|
import "../../chunk-KPQ72R34.js";
|
|
19
19
|
|
|
20
|
-
// bazel-out/
|
|
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)";
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
import { MaybeForwardRefExpression, outputAst as o, R3DeclareDependencyMetadata, R3DependencyMetadata, R3Reference } from '@angular/compiler';
|
|
9
9
|
import { AstObject, AstValue } from '../../ast/ast_value';
|
|
10
|
-
export declare const PLACEHOLDER_VERSION = "19.2.
|
|
10
|
+
export declare const PLACEHOLDER_VERSION = "19.2.17";
|
|
11
11
|
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
|
|
12
12
|
/**
|
|
13
13
|
* Parses the value of an enum from the AST value's symbol name.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/compiler-cli",
|
|
3
|
-
"version": "19.2.
|
|
3
|
+
"version": "19.2.17",
|
|
4
4
|
"description": "Angular - the compiler CLI for Node.js",
|
|
5
5
|
"typings": "index.d.ts",
|
|
6
6
|
"bin": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"yargs": "^17.2.1"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@angular/compiler": "19.2.
|
|
56
|
+
"@angular/compiler": "19.2.17",
|
|
57
57
|
"typescript": ">=5.5 <5.9"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|