@angular/compiler-cli 18.0.0-rc.1 → 18.0.0-rc.2
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-BAS2AOWB.js → chunk-4YZ5DOHQ.js} +5 -5
- package/bundles/{chunk-ZX6BKV7T.js → chunk-6AZ42I2O.js} +5 -5
- package/bundles/{chunk-CFIOLJL4.js → chunk-77CB34BX.js} +43 -43
- package/bundles/{chunk-CFIOLJL4.js.map → chunk-77CB34BX.js.map} +1 -1
- package/bundles/{chunk-JZQHA4E7.js → chunk-AQFTVE7F.js} +5 -5
- package/bundles/{chunk-XAPDG6EU.js → chunk-BKFFZXM2.js} +114 -114
- package/bundles/{chunk-XAPDG6EU.js.map → chunk-BKFFZXM2.js.map} +1 -1
- package/bundles/{chunk-3UXY73FR.js → chunk-BVDVZTEE.js} +31 -31
- package/bundles/{chunk-3ZM5BFEI.js → chunk-LCZH35U2.js} +78 -78
- package/bundles/{chunk-LYJKWJUC.js → chunk-SBDNBITT.js} +3 -3
- package/bundles/{chunk-5DY7CLVW.js → chunk-UPUMIIZG.js} +13 -13
- package/bundles/{chunk-QYV344EV.js → chunk-WR7TUJ7M.js} +7 -7
- package/bundles/{chunk-3W345P4E.js → chunk-XNL3EK5H.js} +7 -7
- 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 +5 -5
- package/bundles/private/tooling.js +5 -5
- package/bundles/src/bin/ng_xi18n.js +10 -10
- package/bundles/src/bin/ngc.js +8 -8
- 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/reflection/src/host.d.ts +1 -4
- /package/bundles/{chunk-BAS2AOWB.js.map → chunk-4YZ5DOHQ.js.map} +0 -0
- /package/bundles/{chunk-ZX6BKV7T.js.map → chunk-6AZ42I2O.js.map} +0 -0
- /package/bundles/{chunk-JZQHA4E7.js.map → chunk-AQFTVE7F.js.map} +0 -0
- /package/bundles/{chunk-3UXY73FR.js.map → chunk-BVDVZTEE.js.map} +0 -0
- /package/bundles/{chunk-3ZM5BFEI.js.map → chunk-LCZH35U2.js.map} +0 -0
- /package/bundles/{chunk-LYJKWJUC.js.map → chunk-SBDNBITT.js.map} +0 -0
- /package/bundles/{chunk-5DY7CLVW.js.map → chunk-UPUMIIZG.js.map} +0 -0
- /package/bundles/{chunk-QYV344EV.js.map → chunk-WR7TUJ7M.js.map} +0 -0
- /package/bundles/{chunk-3W345P4E.js.map → chunk-XNL3EK5H.js.map} +0 -0
|
@@ -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 = "18.0.0-rc.
|
|
10
|
+
export declare const PLACEHOLDER_VERSION = "18.0.0-rc.2";
|
|
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": "18.0.0-rc.
|
|
3
|
+
"version": "18.0.0-rc.2",
|
|
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": "18.0.0-rc.
|
|
56
|
+
"@angular/compiler": "18.0.0-rc.2",
|
|
57
57
|
"typescript": ">=5.4 <5.5"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
@@ -24,11 +24,8 @@ export interface Decorator {
|
|
|
24
24
|
/**
|
|
25
25
|
* `Import` by which the decorator was brought into the module in which it was invoked, or `null`
|
|
26
26
|
* if the decorator was declared in the same module and not imported.
|
|
27
|
-
*
|
|
28
|
-
* Note: this field is declared using computed property syntax to work around a clang-format bug
|
|
29
|
-
* that resulted in inconsistent indentation of this comment block.
|
|
30
27
|
*/
|
|
31
|
-
|
|
28
|
+
import: Import | null;
|
|
32
29
|
/**
|
|
33
30
|
* TypeScript reference to the decorator itself.
|
|
34
31
|
*/
|
|
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
|