File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
nativescript-angular-package Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " nativescript-angular" ,
3- "version" : " 8.20 .0" ,
3+ "version" : " 8.30 .0" ,
44 "description" : " An Angular renderer that lets you build mobile apps with NativeScript." ,
55 "homepage" : " https://www.nativescript.org/" ,
66 "bugs" : " https://github.com/NativeScript/nativescript-angular/issues" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @nativescript/angular" ,
3- "version" : " 8.20 .0" ,
3+ "version" : " 8.30 .0" ,
44 "description" : " An Angular renderer that lets you build mobile apps with NativeScript." ,
55 "homepage" : " https://www.nativescript.org/" ,
66 "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 {
1616 super ( ) ;
1717 }
1818
19- get ( url : string ) : Promise < string > {
19+ get ( url : string ) : string {
2020 const resolvedPath = this . resolve ( url ) ;
2121
2222 const templateFile = this . fs . fileFromPath ( resolvedPath ) ;
2323
24- return templateFile . readText ( ) ;
24+ return templateFile . readTextSync ( ) ;
2525 }
2626
2727 resolve ( url : string ) : string {
You can’t perform that action at this time.
0 commit comments