@angular/compiler-cli 18.1.3 → 18.1.4
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-XNL3EK5H.js → chunk-3W345P4E.js} +7 -7
- package/bundles/{chunk-E7DMD7OM.js → chunk-6E7WYCEU.js} +120 -120
- package/bundles/{chunk-BVJL3UL2.js → chunk-E2YXMPLM.js} +19 -22
- package/bundles/{chunk-BVJL3UL2.js.map → chunk-E2YXMPLM.js.map} +1 -1
- package/bundles/{chunk-AQFTVE7F.js → chunk-JZQHA4E7.js} +5 -5
- package/bundles/{chunk-SBDNBITT.js → chunk-LYJKWJUC.js} +3 -3
- package/bundles/{chunk-TBAJ5CD6.js → chunk-MRMHUPL3.js} +5 -5
- package/bundles/{chunk-WR7TUJ7M.js → chunk-QYV344EV.js} +7 -7
- package/bundles/{chunk-HXUTQSG7.js → chunk-TNEE4FUS.js} +31 -31
- package/bundles/{chunk-NJYMXRLX.js → chunk-UMJUTVY5.js} +78 -78
- package/bundles/{chunk-NJYMXRLX.js.map → chunk-UMJUTVY5.js.map} +1 -1
- package/bundles/{chunk-AOEZR223.js → chunk-WTQ7UQOL.js} +43 -43
- package/bundles/index.js +11 -11
- 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 +5 -5
- package/bundles/src/bin/ng_xi18n.js +9 -9
- package/bundles/src/bin/ngc.js +7 -7
- 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/transformers/jit_transforms/initializer_api_transforms/transform_api.d.ts +1 -1
- /package/bundles/{chunk-XNL3EK5H.js.map → chunk-3W345P4E.js.map} +0 -0
- /package/bundles/{chunk-E7DMD7OM.js.map → chunk-6E7WYCEU.js.map} +0 -0
- /package/bundles/{chunk-AQFTVE7F.js.map → chunk-JZQHA4E7.js.map} +0 -0
- /package/bundles/{chunk-SBDNBITT.js.map → chunk-LYJKWJUC.js.map} +0 -0
- /package/bundles/{chunk-TBAJ5CD6.js.map → chunk-MRMHUPL3.js.map} +0 -0
- /package/bundles/{chunk-WR7TUJ7M.js.map → chunk-QYV344EV.js.map} +0 -0
- /package/bundles/{chunk-HXUTQSG7.js.map → chunk-TNEE4FUS.js.map} +0 -0
- /package/bundles/{chunk-AOEZR223.js.map → chunk-WTQ7UQOL.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.1.
|
|
10
|
+
export declare const PLACEHOLDER_VERSION = "18.1.4";
|
|
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.1.
|
|
3
|
+
"version": "18.1.4",
|
|
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.1.
|
|
56
|
+
"@angular/compiler": "18.1.4",
|
|
57
57
|
"typescript": ">=5.4 <5.6"
|
|
58
58
|
},
|
|
59
59
|
"repository": {
|
|
@@ -12,7 +12,7 @@ import { ImportManager } from '../../../ngtsc/translator';
|
|
|
12
12
|
/** Function that can be used to transform class properties. */
|
|
13
13
|
export type PropertyTransform = (member: Pick<ClassMember, 'name' | 'accessLevel' | 'value'> & {
|
|
14
14
|
node: ts.PropertyDeclaration;
|
|
15
|
-
}, host: ReflectionHost, factory: ts.NodeFactory, importTracker: ImportedSymbolsTracker, importManager: ImportManager, classDecorator: Decorator, isCore: boolean) => ts.PropertyDeclaration;
|
|
15
|
+
}, sourceFile: ts.SourceFile, host: ReflectionHost, factory: ts.NodeFactory, importTracker: ImportedSymbolsTracker, importManager: ImportManager, classDecorator: Decorator, isCore: boolean) => ts.PropertyDeclaration;
|
|
16
16
|
/**
|
|
17
17
|
* Creates an import and access for a given Angular core import while
|
|
18
18
|
* ensuring the decorator symbol access can be traced back to an Angular core
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|