Skip to content

Commit 2f0b4a6

Browse files
committed
dcfa8a0 docs(docs-infra): disable shared-docs tests. (#60520)
1 parent 1f68095 commit 2f0b4a6

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Fri Mar 21 21:53:36 UTC 2025
2-
13d1c8ab38707b06dbed4941a556f982665b3304
1+
Mon Mar 24 07:01:33 UTC 2025
2+
dcfa8a04f56e6df6ca7107743890af4593019dc8

fesm2022/compiler.mjs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-13d1c8a
2+
* @license Angular v20.0.0-next.3+sha-dcfa8a0
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -33055,7 +33055,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3305533055
function compileDeclareClassMetadata(metadata) {
3305633056
const definitionMap = new DefinitionMap();
3305733057
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
33058-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33058+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3305933059
definitionMap.set('ngImport', importExpr(Identifiers.core));
3306033060
definitionMap.set('type', metadata.type);
3306133061
definitionMap.set('decorators', metadata.decorators);
@@ -33073,7 +33073,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3307333073
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3307433074
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3307533075
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
33076-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33076+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3307733077
definitionMap.set('ngImport', importExpr(Identifiers.core));
3307833078
definitionMap.set('type', metadata.type);
3307933079
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -33168,7 +33168,7 @@ function createDirectiveDefinitionMap(meta) {
3316833168
const definitionMap = new DefinitionMap();
3316933169
const minVersion = getMinimumVersionForPartialOutput(meta);
3317033170
definitionMap.set('minVersion', literal(minVersion));
33171-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33171+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3317233172
// e.g. `type: MyDirective`
3317333173
definitionMap.set('type', meta.type.value);
3317433174
if (meta.isStandalone !== undefined) {
@@ -33584,7 +33584,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3358433584
function compileDeclareFactoryFunction(meta) {
3358533585
const definitionMap = new DefinitionMap();
3358633586
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
33587-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33587+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3358833588
definitionMap.set('ngImport', importExpr(Identifiers.core));
3358933589
definitionMap.set('type', meta.type.value);
3359033590
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -33619,7 +33619,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3361933619
function createInjectableDefinitionMap(meta) {
3362033620
const definitionMap = new DefinitionMap();
3362133621
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
33622-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33622+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3362333623
definitionMap.set('ngImport', importExpr(Identifiers.core));
3362433624
definitionMap.set('type', meta.type.value);
3362533625
// Only generate providedIn property if it has a non-null value
@@ -33670,7 +33670,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3367033670
function createInjectorDefinitionMap(meta) {
3367133671
const definitionMap = new DefinitionMap();
3367233672
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
33673-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33673+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3367433674
definitionMap.set('ngImport', importExpr(Identifiers.core));
3367533675
definitionMap.set('type', meta.type.value);
3367633676
definitionMap.set('providers', meta.providers);
@@ -33703,7 +33703,7 @@ function createNgModuleDefinitionMap(meta) {
3370333703
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3370433704
}
3370533705
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
33706-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33706+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3370733707
definitionMap.set('ngImport', importExpr(Identifiers.core));
3370833708
definitionMap.set('type', meta.type.value);
3370933709
// We only generate the keys in the metadata if the arrays contain values.
@@ -33754,7 +33754,7 @@ function compileDeclarePipeFromMetadata(meta) {
3375433754
function createPipeDefinitionMap(meta) {
3375533755
const definitionMap = new DefinitionMap();
3375633756
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
33757-
definitionMap.set('version', literal('20.0.0-next.3+sha-13d1c8a'));
33757+
definitionMap.set('version', literal('20.0.0-next.3+sha-dcfa8a0'));
3375833758
definitionMap.set('ngImport', importExpr(Identifiers.core));
3375933759
// e.g. `type: MyPipe`
3376033760
definitionMap.set('type', meta.type.value);
@@ -33912,7 +33912,7 @@ function compileHmrUpdateCallback(definitions, constantStatements, meta) {
3391233912
* @description
3391333913
* Entry point for all public APIs of the compiler package.
3391433914
*/
33915-
const VERSION = new Version('20.0.0-next.3+sha-13d1c8a');
33915+
const VERSION = new Version('20.0.0-next.3+sha-dcfa8a0');
3391633916

3391733917
//////////////////////////////////////
3391833918
// THIS FILE HAS GLOBAL SIDE EFFECT //

fesm2022/compiler.mjs.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v20.0.0-next.3+sha-13d1c8a
2+
* @license Angular v20.0.0-next.3+sha-dcfa8a0
33
* (c) 2010-2025 Google LLC. https://angular.io/
44
* License: MIT
55
*/

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/compiler",
3-
"version": "20.0.0-next.3+sha-13d1c8a",
3+
"version": "20.0.0-next.3+sha-dcfa8a0",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",

0 commit comments

Comments
 (0)