@angular/compiler-cli 13.2.3 → 14.0.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-PJPAHVUO.js → chunk-2N3G5KYJ.js} +5 -11
- package/bundles/chunk-2N3G5KYJ.js.map +6 -0
- package/bundles/{chunk-C44PYKVA.js → chunk-7C3Q5ZSV.js} +1732 -1502
- package/bundles/chunk-7C3Q5ZSV.js.map +6 -0
- package/bundles/{chunk-O57ZKMWS.js → chunk-JKIKUGPN.js} +2 -2
- package/bundles/{chunk-O57ZKMWS.js.map → chunk-JKIKUGPN.js.map} +0 -0
- package/bundles/{chunk-XNYP2SFR.js → chunk-QMGQEVL2.js} +5 -1
- package/bundles/chunk-QMGQEVL2.js.map +6 -0
- package/bundles/{chunk-XLVWXQAR.js → chunk-QYWK7GNC.js} +5 -5
- package/bundles/{chunk-XLVWXQAR.js.map → chunk-QYWK7GNC.js.map} +1 -1
- package/bundles/{chunk-ALKVYGAK.js → chunk-TYUIAZWZ.js} +9 -6
- package/bundles/chunk-TYUIAZWZ.js.map +6 -0
- package/bundles/{chunk-NRJCXTRC.js → chunk-YG7H35RB.js} +3 -3
- package/bundles/{chunk-NRJCXTRC.js.map → chunk-YG7H35RB.js.map} +0 -0
- package/bundles/index.js +4 -4
- package/bundles/linker/babel/index.js +2 -2
- package/bundles/linker/index.js +2 -2
- package/bundles/ngcc/index.js +5 -5
- package/bundles/ngcc/main-ngcc.js +5 -5
- package/bundles/ngcc/src/execution/cluster/ngcc_cluster_worker.js +4 -4
- package/bundles/private/migrations.js +2 -2
- package/bundles/src/bin/ng_xi18n.js +4 -4
- package/bundles/src/bin/ngc.js +4 -4
- package/bundles_metadata.json +1 -1
- package/ngcc/src/packages/build_marker.d.ts +1 -1
- package/package.json +2 -2
- package/src/ngtsc/annotations/common/index.d.ts +16 -0
- package/src/ngtsc/annotations/{src → common/src}/api.d.ts +1 -1
- package/src/ngtsc/annotations/common/src/di.d.ts +38 -0
- package/src/ngtsc/annotations/{src → common/src}/diagnostics.d.ts +15 -7
- package/src/ngtsc/annotations/common/src/evaluation.d.ts +18 -0
- package/src/ngtsc/annotations/{src → common/src}/factory.d.ts +2 -2
- package/src/ngtsc/annotations/{src → common/src}/metadata.d.ts +2 -2
- package/src/ngtsc/annotations/{src → common/src}/references_registry.d.ts +3 -3
- package/src/ngtsc/annotations/{src → common/src}/util.d.ts +7 -43
- package/src/ngtsc/annotations/component/index.d.ts +9 -0
- package/src/ngtsc/annotations/component/src/diagnostics.d.ts +20 -0
- package/src/ngtsc/annotations/component/src/handler.d.ts +92 -0
- package/src/ngtsc/annotations/component/src/metadata.d.ts +61 -0
- package/src/ngtsc/annotations/component/src/resources.d.ts +123 -0
- package/src/ngtsc/annotations/component/src/scope.d.ts +20 -0
- package/src/ngtsc/annotations/component/src/symbol.d.ts +20 -0
- package/src/ngtsc/annotations/component/src/util.d.ts +24 -0
- package/src/ngtsc/annotations/directive/index.d.ts +11 -0
- package/src/ngtsc/annotations/directive/src/handler.d.ts +59 -0
- package/src/ngtsc/annotations/directive/src/shared.d.ts +30 -0
- package/src/ngtsc/annotations/directive/src/symbol.d.ts +27 -0
- package/src/ngtsc/annotations/index.d.ts +4 -6
- package/src/ngtsc/annotations/ng_module/index.d.ts +9 -0
- package/src/ngtsc/annotations/{src/ng_module.d.ts → ng_module/src/handler.d.ts} +11 -11
- package/src/ngtsc/diagnostics/src/error_code.d.ts +17 -0
- package/src/ngtsc/metadata/src/api.d.ts +5 -0
- package/bundles/chunk-ALKVYGAK.js.map +0 -6
- package/bundles/chunk-C44PYKVA.js.map +0 -6
- package/bundles/chunk-PJPAHVUO.js.map +0 -6
- package/bundles/chunk-XNYP2SFR.js.map +0 -6
- package/src/ngtsc/annotations/src/component.d.ts +0 -246
- package/src/ngtsc/annotations/src/directive.d.ts +0 -99
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
sendMessageToWorker,
|
|
37
37
|
sortTasksByPriority,
|
|
38
38
|
stringifyTask
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-QYWK7GNC.js";
|
|
40
40
|
import {
|
|
41
41
|
LogLevel
|
|
42
42
|
} from "./chunk-SKBLJA43.js";
|
|
@@ -887,7 +887,7 @@ var ProgramBasedEntryPointFinder = class extends TracingEntryPointFinder {
|
|
|
887
887
|
};
|
|
888
888
|
|
|
889
889
|
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/ngcc/src/packages/build_marker.mjs
|
|
890
|
-
var NGCC_VERSION = "
|
|
890
|
+
var NGCC_VERSION = "14.0.0-next.3";
|
|
891
891
|
function needsCleaning(packageJson) {
|
|
892
892
|
return Object.values(packageJson.__processed_by_ivy_ngcc__ || {}).some((value) => value !== NGCC_VERSION);
|
|
893
893
|
}
|
|
@@ -2172,4 +2172,4 @@ export {
|
|
|
2172
2172
|
* Use of this source code is governed by an MIT-style license that can be
|
|
2173
2173
|
* found in the LICENSE file at https://angular.io/license
|
|
2174
2174
|
*/
|
|
2175
|
-
//# sourceMappingURL=chunk-
|
|
2175
|
+
//# sourceMappingURL=chunk-YG7H35RB.js.map
|
|
File without changes
|
package/bundles/index.js
CHANGED
|
@@ -30,16 +30,16 @@ import {
|
|
|
30
30
|
isTsDiagnostic,
|
|
31
31
|
performCompilation,
|
|
32
32
|
readConfiguration
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-2N3G5KYJ.js";
|
|
34
34
|
import {
|
|
35
35
|
untagAllTsFiles
|
|
36
|
-
} from "./chunk-
|
|
36
|
+
} from "./chunk-7C3Q5ZSV.js";
|
|
37
37
|
import "./chunk-7PY7XEFH.js";
|
|
38
38
|
import {
|
|
39
39
|
ConsoleLogger,
|
|
40
40
|
LogLevel
|
|
41
41
|
} from "./chunk-SKBLJA43.js";
|
|
42
|
-
import "./chunk-
|
|
42
|
+
import "./chunk-QMGQEVL2.js";
|
|
43
43
|
import {
|
|
44
44
|
LogicalFileSystem,
|
|
45
45
|
LogicalProjectPath,
|
|
@@ -71,7 +71,7 @@ import {
|
|
|
71
71
|
|
|
72
72
|
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/version.mjs
|
|
73
73
|
import { Version } from "@angular/compiler";
|
|
74
|
-
var VERSION = new Version("
|
|
74
|
+
var VERSION = new Version("14.0.0-next.3");
|
|
75
75
|
|
|
76
76
|
// bazel-out/k8-fastbuild/bin/packages/compiler-cli/src/ngtsc/tsc_plugin.mjs
|
|
77
77
|
var NgTscPlugin = class {
|
|
@@ -13,9 +13,9 @@ import {
|
|
|
13
13
|
LinkerEnvironment,
|
|
14
14
|
assert,
|
|
15
15
|
isFatalLinkerError
|
|
16
|
-
} from "../../chunk-
|
|
16
|
+
} from "../../chunk-TYUIAZWZ.js";
|
|
17
17
|
import "../../chunk-K2Z44JHH.js";
|
|
18
|
-
import "../../chunk-
|
|
18
|
+
import "../../chunk-QMGQEVL2.js";
|
|
19
19
|
import {
|
|
20
20
|
NodeJSFileSystem
|
|
21
21
|
} from "../../chunk-FXU7FMZC.js";
|
package/bundles/linker/index.js
CHANGED
|
@@ -11,9 +11,9 @@ import {
|
|
|
11
11
|
assert,
|
|
12
12
|
isFatalLinkerError,
|
|
13
13
|
needsLinking
|
|
14
|
-
} from "../chunk-
|
|
14
|
+
} from "../chunk-TYUIAZWZ.js";
|
|
15
15
|
import "../chunk-K2Z44JHH.js";
|
|
16
|
-
import "../chunk-
|
|
16
|
+
import "../chunk-QMGQEVL2.js";
|
|
17
17
|
import "../chunk-FXU7FMZC.js";
|
|
18
18
|
import "../chunk-WQ3TNYTD.js";
|
|
19
19
|
export {
|
package/bundles/ngcc/index.js
CHANGED
|
@@ -5,20 +5,20 @@
|
|
|
5
5
|
|
|
6
6
|
import {
|
|
7
7
|
mainNgcc
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-YG7H35RB.js";
|
|
9
9
|
import "../chunk-QDWL7SZJ.js";
|
|
10
10
|
import {
|
|
11
11
|
clearTsConfigCache
|
|
12
|
-
} from "../chunk-
|
|
13
|
-
import "../chunk-
|
|
14
|
-
import "../chunk-
|
|
12
|
+
} from "../chunk-QYWK7GNC.js";
|
|
13
|
+
import "../chunk-2N3G5KYJ.js";
|
|
14
|
+
import "../chunk-7C3Q5ZSV.js";
|
|
15
15
|
import "../chunk-7PY7XEFH.js";
|
|
16
16
|
import {
|
|
17
17
|
ConsoleLogger,
|
|
18
18
|
LogLevel
|
|
19
19
|
} from "../chunk-SKBLJA43.js";
|
|
20
20
|
import "../chunk-K2Z44JHH.js";
|
|
21
|
-
import "../chunk-
|
|
21
|
+
import "../chunk-QMGQEVL2.js";
|
|
22
22
|
import {
|
|
23
23
|
NodeJSFileSystem,
|
|
24
24
|
setFileSystem
|
|
@@ -9,15 +9,15 @@ import {
|
|
|
9
9
|
} from "../chunk-Z2HS4HDG.js";
|
|
10
10
|
import {
|
|
11
11
|
mainNgcc
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-YG7H35RB.js";
|
|
13
13
|
import "../chunk-QDWL7SZJ.js";
|
|
14
|
-
import "../chunk-
|
|
15
|
-
import "../chunk-
|
|
16
|
-
import "../chunk-
|
|
14
|
+
import "../chunk-QYWK7GNC.js";
|
|
15
|
+
import "../chunk-2N3G5KYJ.js";
|
|
16
|
+
import "../chunk-7C3Q5ZSV.js";
|
|
17
17
|
import "../chunk-7PY7XEFH.js";
|
|
18
18
|
import "../chunk-SKBLJA43.js";
|
|
19
19
|
import "../chunk-K2Z44JHH.js";
|
|
20
|
-
import "../chunk-
|
|
20
|
+
import "../chunk-QMGQEVL2.js";
|
|
21
21
|
import "../chunk-FXU7FMZC.js";
|
|
22
22
|
import "../chunk-GLCRIILX.js";
|
|
23
23
|
import "../chunk-WQ3TNYTD.js";
|
|
@@ -13,13 +13,13 @@ import {
|
|
|
13
13
|
getSharedSetup,
|
|
14
14
|
sendMessageToMaster,
|
|
15
15
|
stringifyTask
|
|
16
|
-
} from "../../../../chunk-
|
|
17
|
-
import "../../../../chunk-
|
|
18
|
-
import "../../../../chunk-
|
|
16
|
+
} from "../../../../chunk-QYWK7GNC.js";
|
|
17
|
+
import "../../../../chunk-2N3G5KYJ.js";
|
|
18
|
+
import "../../../../chunk-7C3Q5ZSV.js";
|
|
19
19
|
import "../../../../chunk-7PY7XEFH.js";
|
|
20
20
|
import "../../../../chunk-SKBLJA43.js";
|
|
21
21
|
import "../../../../chunk-K2Z44JHH.js";
|
|
22
|
-
import "../../../../chunk-
|
|
22
|
+
import "../../../../chunk-QMGQEVL2.js";
|
|
23
23
|
import "../../../../chunk-FXU7FMZC.js";
|
|
24
24
|
import "../../../../chunk-GLCRIILX.js";
|
|
25
25
|
import "../../../../chunk-WQ3TNYTD.js";
|
|
@@ -8,14 +8,14 @@ import {
|
|
|
8
8
|
PartialEvaluator,
|
|
9
9
|
StaticInterpreter,
|
|
10
10
|
forwardRefResolver
|
|
11
|
-
} from "../chunk-
|
|
11
|
+
} from "../chunk-7C3Q5ZSV.js";
|
|
12
12
|
import {
|
|
13
13
|
TypeScriptReflectionHost,
|
|
14
14
|
reflectObjectLiteral
|
|
15
15
|
} from "../chunk-7PY7XEFH.js";
|
|
16
16
|
import {
|
|
17
17
|
Reference
|
|
18
|
-
} from "../chunk-
|
|
18
|
+
} from "../chunk-QMGQEVL2.js";
|
|
19
19
|
import "../chunk-FXU7FMZC.js";
|
|
20
20
|
import "../chunk-GLCRIILX.js";
|
|
21
21
|
import "../chunk-WQ3TNYTD.js";
|
|
@@ -7,13 +7,13 @@
|
|
|
7
7
|
import {
|
|
8
8
|
main,
|
|
9
9
|
readCommandLineAndConfiguration
|
|
10
|
-
} from "../../chunk-
|
|
10
|
+
} from "../../chunk-JKIKUGPN.js";
|
|
11
11
|
import {
|
|
12
12
|
EmitFlags
|
|
13
|
-
} from "../../chunk-
|
|
14
|
-
import "../../chunk-
|
|
13
|
+
} from "../../chunk-2N3G5KYJ.js";
|
|
14
|
+
import "../../chunk-7C3Q5ZSV.js";
|
|
15
15
|
import "../../chunk-7PY7XEFH.js";
|
|
16
|
-
import "../../chunk-
|
|
16
|
+
import "../../chunk-QMGQEVL2.js";
|
|
17
17
|
import {
|
|
18
18
|
NodeJSFileSystem,
|
|
19
19
|
setFileSystem
|
package/bundles/src/bin/ngc.js
CHANGED
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
import {
|
|
8
8
|
main
|
|
9
|
-
} from "../../chunk-
|
|
10
|
-
import "../../chunk-
|
|
11
|
-
import "../../chunk-
|
|
9
|
+
} from "../../chunk-JKIKUGPN.js";
|
|
10
|
+
import "../../chunk-2N3G5KYJ.js";
|
|
11
|
+
import "../../chunk-7C3Q5ZSV.js";
|
|
12
12
|
import "../../chunk-7PY7XEFH.js";
|
|
13
|
-
import "../../chunk-
|
|
13
|
+
import "../../chunk-QMGQEVL2.js";
|
|
14
14
|
import {
|
|
15
15
|
NodeJSFileSystem,
|
|
16
16
|
setFileSystem
|