Skip to content

Commit b218448

Browse files
committed
0bd55a6 refactor(docs-infra): complete removal of aio directory (#56496)
1 parent b0d1d57 commit b218448

14 files changed

+28
-28
lines changed

BUILD_INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Tue Jun 18 18:39:44 UTC 2024
2-
00bde8b1c2d1511da40526a374d4e94d31e0d575
1+
Tue Jun 18 19:30:20 UTC 2024
2+
0bd55a684f7adf83ceb7d6c0b1d510252209388c

esm2022/src/render3/partial/class_metadata.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
2424
export function compileDeclareClassMetadata(metadata) {
2525
const definitionMap = new DefinitionMap();
2626
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
27-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
27+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
2828
definitionMap.set('ngImport', o.importExpr(R3.core));
2929
definitionMap.set('type', metadata.type);
3030
definitionMap.set('decorators', metadata.decorators);
@@ -42,7 +42,7 @@ export function compileComponentDeclareClassMetadata(metadata, dependencies) {
4242
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? o.literal(null));
4343
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? o.literal(null));
4444
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
45-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
45+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
4646
definitionMap.set('ngImport', o.importExpr(R3.core));
4747
definitionMap.set('type', metadata.type);
4848
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));

esm2022/src/render3/partial/directive.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function createDirectiveDefinitionMap(meta) {
2828
const definitionMap = new DefinitionMap();
2929
const minVersion = getMinimumVersionForPartialOutput(meta);
3030
definitionMap.set('minVersion', o.literal(minVersion));
31-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
31+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
3232
// e.g. `type: MyDirective`
3333
definitionMap.set('type', meta.type.value);
3434
if (meta.isStandalone) {

esm2022/src/render3/partial/factory.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION = '12.0.0';
2121
export function compileDeclareFactoryFunction(meta) {
2222
const definitionMap = new DefinitionMap();
2323
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
24-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
24+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
2525
definitionMap.set('ngImport', o.importExpr(R3.core));
2626
definitionMap.set('type', meta.type.value);
2727
definitionMap.set('deps', compileDependencies(meta.deps));

esm2022/src/render3/partial/injectable.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export function compileDeclareInjectableFromMetadata(meta) {
3434
export function createInjectableDefinitionMap(meta) {
3535
const definitionMap = new DefinitionMap();
3636
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
37-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
37+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
3838
definitionMap.set('ngImport', o.importExpr(R3.core));
3939
definitionMap.set('type', meta.type.value);
4040
// Only generate providedIn property if it has a non-null value

esm2022/src/render3/partial/injector.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function compileDeclareInjectorFromMetadata(meta) {
2929
function createInjectorDefinitionMap(meta) {
3030
const definitionMap = new DefinitionMap();
3131
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
32-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
32+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
3333
definitionMap.set('ngImport', o.importExpr(R3.core));
3434
definitionMap.set('type', meta.type.value);
3535
definitionMap.set('providers', meta.providers);

esm2022/src/render3/partial/ng_module.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function createNgModuleDefinitionMap(meta) {
3333
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3434
}
3535
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
36-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
36+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
3737
definitionMap.set('ngImport', o.importExpr(R3.core));
3838
definitionMap.set('type', meta.type.value);
3939
// We only generate the keys in the metadata if the arrays contain values.

esm2022/src/render3/partial/pipe.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export function compileDeclarePipeFromMetadata(meta) {
3232
export function createPipeDefinitionMap(meta) {
3333
const definitionMap = new DefinitionMap();
3434
definitionMap.set('minVersion', o.literal(MINIMUM_PARTIAL_LINKER_VERSION));
35-
definitionMap.set('version', o.literal('18.1.0-next.2+sha-00bde8b'));
35+
definitionMap.set('version', o.literal('18.1.0-next.2+sha-0bd55a6'));
3636
definitionMap.set('ngImport', o.importExpr(R3.core));
3737
// e.g. `type: MyPipe`
3838
definitionMap.set('type', meta.type.value);

esm2022/src/template/pipeline/src/ingest.mjs

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

esm2022/src/version.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
* Entry point for all public APIs of the compiler package.
1212
*/
1313
import { Version } from './util';
14-
export const VERSION = new Version('18.1.0-next.2+sha-00bde8b');
14+
export const VERSION = new Version('18.1.0-next.2+sha-0bd55a6');
1515
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2NvbXBpbGVyL3NyYy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOzs7Ozs7R0FNRztBQUVIOzs7O0dBSUc7QUFFSCxPQUFPLEVBQUMsT0FBTyxFQUFDLE1BQU0sUUFBUSxDQUFDO0FBRS9CLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxJQUFJLE9BQU8sQ0FBQyxtQkFBbUIsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbi8qKlxuICogQG1vZHVsZVxuICogQGRlc2NyaXB0aW9uXG4gKiBFbnRyeSBwb2ludCBmb3IgYWxsIHB1YmxpYyBBUElzIG9mIHRoZSBjb21waWxlciBwYWNrYWdlLlxuICovXG5cbmltcG9ydCB7VmVyc2lvbn0gZnJvbSAnLi91dGlsJztcblxuZXhwb3J0IGNvbnN0IFZFUlNJT04gPSBuZXcgVmVyc2lvbignMC4wLjAtUExBQ0VIT0xERVInKTtcbiJdfQ==

fesm2022/compiler.mjs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Angular v18.1.0-next.2+sha-00bde8b
2+
* @license Angular v18.1.0-next.2+sha-0bd55a6
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/
@@ -24481,7 +24481,7 @@ function convertAst(ast, job, baseSourceSpan) {
2448124481
// The whole point of the explicit `this` was to access the class property, but TDB and the
2448224482
// current TCB treat the read as implicit, and give you the context property instead!
2448324483
//
24484-
// For now, we emulate this old behvaior by aggressively converting explicit reads to to
24484+
// For now, we emulate this old behavior by aggressively converting explicit reads to to
2448524485
// implicit reads, except for the special cases that TDB and the current TCB protect. However,
2448624486
// it would be an improvement to fix this.
2448724487
//
@@ -29263,7 +29263,7 @@ function publishFacade(global) {
2926329263
* @description
2926429264
* Entry point for all public APIs of the compiler package.
2926529265
*/
29266-
const VERSION = new Version('18.1.0-next.2+sha-00bde8b');
29266+
const VERSION = new Version('18.1.0-next.2+sha-0bd55a6');
2926729267

2926829268
class CompilerConfig {
2926929269
constructor({ defaultEncapsulation = ViewEncapsulation.Emulated, preserveWhitespaces, strictInjectionParameters, } = {}) {
@@ -30901,7 +30901,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
3090130901
function compileDeclareClassMetadata(metadata) {
3090230902
const definitionMap = new DefinitionMap();
3090330903
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
30904-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
30904+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3090530905
definitionMap.set('ngImport', importExpr(Identifiers.core));
3090630906
definitionMap.set('type', metadata.type);
3090730907
definitionMap.set('decorators', metadata.decorators);
@@ -30919,7 +30919,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
3091930919
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? literal(null));
3092030920
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? literal(null));
3092130921
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
30922-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
30922+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3092330923
definitionMap.set('ngImport', importExpr(Identifiers.core));
3092430924
definitionMap.set('type', metadata.type);
3092530925
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
@@ -31014,7 +31014,7 @@ function createDirectiveDefinitionMap(meta) {
3101431014
const definitionMap = new DefinitionMap();
3101531015
const minVersion = getMinimumVersionForPartialOutput(meta);
3101631016
definitionMap.set('minVersion', literal(minVersion));
31017-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
31017+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3101831018
// e.g. `type: MyDirective`
3101931019
definitionMap.set('type', meta.type.value);
3102031020
if (meta.isStandalone) {
@@ -31436,7 +31436,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
3143631436
function compileDeclareFactoryFunction(meta) {
3143731437
const definitionMap = new DefinitionMap();
3143831438
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
31439-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
31439+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3144031440
definitionMap.set('ngImport', importExpr(Identifiers.core));
3144131441
definitionMap.set('type', meta.type.value);
3144231442
definitionMap.set('deps', compileDependencies(meta.deps));
@@ -31471,7 +31471,7 @@ function compileDeclareInjectableFromMetadata(meta) {
3147131471
function createInjectableDefinitionMap(meta) {
3147231472
const definitionMap = new DefinitionMap();
3147331473
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
31474-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
31474+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3147531475
definitionMap.set('ngImport', importExpr(Identifiers.core));
3147631476
definitionMap.set('type', meta.type.value);
3147731477
// Only generate providedIn property if it has a non-null value
@@ -31522,7 +31522,7 @@ function compileDeclareInjectorFromMetadata(meta) {
3152231522
function createInjectorDefinitionMap(meta) {
3152331523
const definitionMap = new DefinitionMap();
3152431524
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
31525-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
31525+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3152631526
definitionMap.set('ngImport', importExpr(Identifiers.core));
3152731527
definitionMap.set('type', meta.type.value);
3152831528
definitionMap.set('providers', meta.providers);
@@ -31555,7 +31555,7 @@ function createNgModuleDefinitionMap(meta) {
3155531555
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
3155631556
}
3155731557
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
31558-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
31558+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3155931559
definitionMap.set('ngImport', importExpr(Identifiers.core));
3156031560
definitionMap.set('type', meta.type.value);
3156131561
// We only generate the keys in the metadata if the arrays contain values.
@@ -31606,7 +31606,7 @@ function compileDeclarePipeFromMetadata(meta) {
3160631606
function createPipeDefinitionMap(meta) {
3160731607
const definitionMap = new DefinitionMap();
3160831608
definitionMap.set('minVersion', literal(MINIMUM_PARTIAL_LINKER_VERSION));
31609-
definitionMap.set('version', literal('18.1.0-next.2+sha-00bde8b'));
31609+
definitionMap.set('version', literal('18.1.0-next.2+sha-0bd55a6'));
3161031610
definitionMap.set('ngImport', importExpr(Identifiers.core));
3161131611
// e.g. `type: MyPipe`
3161231612
definitionMap.set('type', meta.type.value);

fesm2022/compiler.mjs.map

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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 v18.1.0-next.2+sha-00bde8b
2+
* @license Angular v18.1.0-next.2+sha-0bd55a6
33
* (c) 2010-2024 Google LLC. https://angular.io/
44
* License: MIT
55
*/

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",
3-
"version": "18.1.0-next.2+sha-00bde8b",
3+
"version": "18.1.0-next.2+sha-0bd55a6",
44
"description": "Angular - the compiler library",
55
"author": "angular",
66
"license": "MIT",
@@ -11,7 +11,7 @@
1111
"tslib": "^2.3.0"
1212
},
1313
"peerDependencies": {
14-
"@angular/core": "18.1.0-next.2+sha-00bde8b"
14+
"@angular/core": "18.1.0-next.2+sha-0bd55a6"
1515
},
1616
"peerDependenciesMeta": {
1717
"@angular/core": {

0 commit comments

Comments
 (0)