Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45dc944

Browse files
committed
0571b33 feat(compiler-cli): enable type checking of host bindings by default (#63654)
1 parent 35fdfd1 commit 45dc944

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Tue Sep 9 21:32:42 UTC 2025
2-
1e614ec68c2cae60b32e6a236b5a3de0055d89db
1+
Tue Sep 9 21:40:08 UTC 2025
2+
0571b335b9b11459b73a19679671eae97fbe1683

bundles/chunk-BPDNYZBC.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ import { compileDirectiveFromMetadata, makeBindingParser, ParseLocation, ParseSo
455455
// packages/compiler-cli/linker/src/file_linker/partial_linkers/util.js
456456
import { createMayBeForwardRefExpression, outputAst as o2 } from "@angular/compiler";
457457
import semver from "semver";
458-
var PLACEHOLDER_VERSION = "21.0.0-next.2+sha-1e614ec";
458+
var PLACEHOLDER_VERSION = "21.0.0-next.2+sha-0571b33";
459459
function wrapReference(wrapped) {
460460
return { value: wrapped, type: wrapped };
461461
}

bundles/chunk-RGCMORIH.js renamed to bundles/chunk-GHWSK4FH.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4673,7 +4673,7 @@ var NgCompiler = class _NgCompiler {
46734673
const supportJitMode = this.options["supportJitMode"] ?? true;
46744674
const supportTestBed = this.options["supportTestBed"] ?? true;
46754675
const externalRuntimeStyles = this.options["externalRuntimeStyles"] ?? false;
4676-
const typeCheckHostBindings = this.options.typeCheckHostBindings ?? false;
4676+
const typeCheckHostBindings = this.options.typeCheckHostBindings ?? true;
46774677
if (supportTestBed === false && compilationMode === CompilationMode.PARTIAL) {
46784678
throw new Error('TestBed support ("supportTestBed" option) cannot be disabled in partial compilation mode.');
46794679
}

bundles/chunk-CYXD2GVB.js renamed to bundles/chunk-XGTXFDVY.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
formatDiagnostics,
1313
performCompilation,
1414
readConfiguration
15-
} from "./chunk-RGCMORIH.js";
15+
} from "./chunk-GHWSK4FH.js";
1616

1717
// packages/compiler-cli/src/main.js
1818
import ts2 from "typescript";

bundles/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import {
2828
isTsDiagnostic,
2929
performCompilation,
3030
readConfiguration
31-
} from "./chunk-RGCMORIH.js";
31+
} from "./chunk-GHWSK4FH.js";
3232
import {
3333
ConsoleLogger,
3434
LogLevel
@@ -77,7 +77,7 @@ import "./chunk-G7GFT6BU.js";
7777

7878
// packages/compiler-cli/src/version.js
7979
import { Version } from "@angular/compiler";
80-
var VERSION = new Version("21.0.0-next.2+sha-1e614ec");
80+
var VERSION = new Version("21.0.0-next.2+sha-0571b33");
8181

8282
// packages/compiler-cli/private/tooling.js
8383
var GLOBAL_DEFS_FOR_TERSER = {

bundles/src/bin/ng_xi18n.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
import {
77
main,
88
readCommandLineAndConfiguration
9-
} from "../../chunk-CYXD2GVB.js";
9+
} from "../../chunk-XGTXFDVY.js";
1010
import {
1111
EmitFlags
12-
} from "../../chunk-RGCMORIH.js";
12+
} from "../../chunk-GHWSK4FH.js";
1313
import "../../chunk-BSGTWRWT.js";
1414
import "../../chunk-DQC7LG5E.js";
1515
import "../../chunk-I2BHWRAU.js";

bundles/src/bin/ngc.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
import {
77
main
8-
} from "../../chunk-CYXD2GVB.js";
9-
import "../../chunk-RGCMORIH.js";
8+
} from "../../chunk-XGTXFDVY.js";
9+
import "../../chunk-GHWSK4FH.js";
1010
import "../../chunk-BSGTWRWT.js";
1111
import "../../chunk-DQC7LG5E.js";
1212
import "../../chunk-I2BHWRAU.js";

linker/src/file_linker/partial_linkers/util.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
import { MaybeForwardRefExpression, outputAst as o, R3DeclareDependencyMetadata, R3DependencyMetadata, R3Reference } from '@angular/compiler';
99
import { AstObject, AstValue } from '../../ast/ast_value';
10-
export declare const PLACEHOLDER_VERSION = "21.0.0-next.2+sha-1e614ec";
10+
export declare const PLACEHOLDER_VERSION = "21.0.0-next.2+sha-0571b33";
1111
export declare function wrapReference<TExpression>(wrapped: o.WrappedNodeExpr<TExpression>): R3Reference;
1212
/**
1313
* Parses the value of an enum from the AST value's symbol name.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler-cli",
3-
"version": "21.0.0-next.2+sha-1e614ec",
3+
"version": "21.0.0-next.2+sha-0571b33",
44
"description": "Angular - the compiler CLI for Node.js",
55
"typings": "index.d.ts",
66
"bin": {
@@ -48,7 +48,7 @@
4848
"yargs": "^18.0.0"
4949
},
5050
"peerDependencies": {
51-
"@angular/compiler": "21.0.0-next.2+sha-1e614ec",
51+
"@angular/compiler": "21.0.0-next.2+sha-0571b33",
5252
"typescript": ">=5.9 <6.0"
5353
},
5454
"peerDependenciesMeta": {

0 commit comments

Comments
 (0)