File tree 3 files changed +4
-4
lines changed
nativescript-angular-package
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " nativescript-angular" ,
3
- "version" : " 8.20 .0" ,
3
+ "version" : " 8.30 .0" ,
4
4
"description" : " An Angular renderer that lets you build mobile apps with NativeScript." ,
5
5
"homepage" : " https://www.nativescript.org/" ,
6
6
"bugs" : " https://github.com/NativeScript/nativescript-angular/issues" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @nativescript/angular" ,
3
- "version" : " 8.20 .0" ,
3
+ "version" : " 8.30 .0" ,
4
4
"description" : " An Angular renderer that lets you build mobile apps with NativeScript." ,
5
5
"homepage" : " https://www.nativescript.org/" ,
6
6
"bugs" : " https://github.com/NativeScript/nativescript-angular/issues" ,
Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ export class FileSystemResourceLoader extends ResourceLoader {
16
16
super ( ) ;
17
17
}
18
18
19
- get ( url : string ) : Promise < string > {
19
+ get ( url : string ) : string {
20
20
const resolvedPath = this . resolve ( url ) ;
21
21
22
22
const templateFile = this . fs . fileFromPath ( resolvedPath ) ;
23
23
24
- return templateFile . readText ( ) ;
24
+ return templateFile . readTextSync ( ) ;
25
25
}
26
26
27
27
resolve ( url : string ) : string {
You can’t perform that action at this time.
0 commit comments