File tree Expand file tree Collapse file tree 12 files changed +5700
-3034
lines changed
goldens/public-api/angular_devkit/schematics
third_party/github.com/Microsoft/TypeScript
tests/legacy-cli/e2e/assets/19-ssr-project-webpack Expand file tree Collapse file tree 12 files changed +5700
-3034
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,8 @@ export interface CreateFileAction extends ActionBase {
206
206
export class DelegateTree implements Tree_2 {
207
207
constructor (_other : Tree_2 );
208
208
// (undocumented)
209
+ [x : symbol ]: () => this ;
210
+ // (undocumented)
209
211
get actions(): Action [];
210
212
// (undocumented)
211
213
apply(action : Action , strategy ? : MergeStrategy ): void ;
@@ -518,6 +520,8 @@ export class HostSink extends SimpleSinkBase {
518
520
export class HostTree implements Tree_2 {
519
521
constructor (_backend ? : virtualFs .ReadonlyHost <{}>);
520
522
// (undocumented)
523
+ [x : symbol ]: () => this ;
524
+ // (undocumented)
521
525
get actions(): Action [];
522
526
// (undocumented)
523
527
apply(action : Action , strategy ? : MergeStrategy ): void ;
Original file line number Diff line number Diff line change 202
202
"tree-kill" : " 1.2.2" ,
203
203
"ts-node" : " ^10.9.1" ,
204
204
"tslib" : " 2.8.1" ,
205
- "typescript" : " 5.6.3 " ,
205
+ "typescript" : " 5.7.2 " ,
206
206
"undici" : " 7.0.0" ,
207
207
"unenv" : " ^1.10.0" ,
208
208
"verdaccio" : " 6.0.2" ,
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export class NodeJsAsyncHost implements virtualFs.Host<Stats> {
71
71
72
72
read ( path : Path ) : Observable < virtualFs . FileBuffer > {
73
73
return observableFrom ( fsPromises . readFile ( getSystemPath ( path ) ) ) . pipe (
74
- map ( ( buffer ) => new Uint8Array ( buffer ) . buffer as virtualFs . FileBuffer ) ,
74
+ map ( ( buffer ) => new Uint8Array ( buffer ) . buffer ) ,
75
75
) ;
76
76
}
77
77
@@ -169,7 +169,7 @@ export class NodeJsSyncHost implements virtualFs.Host<Stats> {
169
169
return new Observable ( ( obs ) => {
170
170
const buffer = readFileSync ( getSystemPath ( path ) ) ;
171
171
172
- obs . next ( new Uint8Array ( buffer ) . buffer as virtualFs . FileBuffer ) ;
172
+ obs . next ( new Uint8Array ( buffer ) . buffer ) ;
173
173
obs . complete ( ) ;
174
174
} ) ;
175
175
}
Original file line number Diff line number Diff line change 15
15
"dependencies" : {
16
16
"@angular-devkit/core" : " ^<%= coreVersion %>" ,
17
17
"@angular-devkit/schematics" : " ^<%= schematicsVersion %>" ,
18
- "typescript" : " ~5.6 .2"
18
+ "typescript" : " ~5.7 .2"
19
19
},
20
20
"devDependencies" : {
21
21
"@types/node" : " ^18.18.0" ,
Original file line number Diff line number Diff line change 15
15
"dependencies" : {
16
16
"@angular-devkit/core" : " ^<%= coreVersion %>" ,
17
17
"@angular-devkit/schematics" : " ^<%= schematicsVersion %>" ,
18
- "typescript" : " ~5.6 .2"
18
+ "typescript" : " ~5.7 .2"
19
19
},
20
20
"devDependencies" : {
21
21
"@types/node" : " ^18.18.0" ,
Original file line number Diff line number Diff line change 29
29
"@angular-devkit/core" : " 0.0.0-PLACEHOLDER" ,
30
30
"@angular/compiler" : " 19.1.0-next.0" ,
31
31
"@angular/compiler-cli" : " 19.1.0-next.0" ,
32
- "typescript" : " 5.6.3 " ,
32
+ "typescript" : " 5.7.2 " ,
33
33
"webpack" : " 5.96.1"
34
34
}
35
35
}
Original file line number Diff line number Diff line change 1
1
load ("//tools:defaults.bzl" , "ts_library" )
2
2
3
- # files fetched on 2024-09-10 from
4
- # https://github.com/microsoft/TypeScript/releases/tag/v5.6 .2
3
+ # files fetched on 2024-11-28 from
4
+ # https://github.com/microsoft/TypeScript/releases/tag/v5.7 .2
5
5
6
6
# Commands to download:
7
- # curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.6 .2/lib/typescript.d.ts -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.d.ts
8
- # curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.6 .2/lib/typescript.js -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.js
7
+ # curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.7 .2/lib/typescript.d.ts -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.d.ts
8
+ # curl https://raw.githubusercontent.com/microsoft/TypeScript/v5.7 .2/lib/typescript.js -o packages/schematics/angular/third_party/github.com/Microsoft/TypeScript/lib/typescript.js
9
9
10
10
licenses (["notice" ]) # Apache 2.0
11
11
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 23
23
"rxjs" : " ~7.8.0" ,
24
24
"tslib" : " ^2.3.0" ,
25
25
"ts-node" : " ~10.9.0" ,
26
- "typescript" : " ~5.6 .2" ,
26
+ "typescript" : " ~5.7 .2" ,
27
27
"zone.js" : " ~0.15.0"
28
28
}
29
29
}
You can’t perform that action at this time.
0 commit comments