File tree 2 files changed +16
-4
lines changed
angular_devkit/build_angular/src/utils/index-file
schematics/angular/migrations/update-17
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 6
6
* found in the LICENSE file at https://angular.io/license
7
7
*/
8
8
9
- import * as fs from 'fs ' ;
10
- import { join } from 'path' ;
9
+ import { readFile } from 'node:fs/promises ' ;
10
+ import { join } from 'node: path' ;
11
11
import { NormalizedCachedOptions } from '../normalize-cache' ;
12
12
import { NormalizedOptimizationOptions } from '../normalize-optimization' ;
13
13
import { stripBom } from '../strip-bom' ;
@@ -104,11 +104,19 @@ export class IndexHtmlGenerator {
104
104
}
105
105
106
106
async readAsset ( path : string ) : Promise < string > {
107
- return fs . promises . readFile ( path , 'utf-8' ) ;
107
+ try {
108
+ return await readFile ( path , 'utf-8' ) ;
109
+ } catch {
110
+ throw new Error ( `Failed to read asset "${ path } ".` ) ;
111
+ }
108
112
}
109
113
110
114
protected async readIndex ( path : string ) : Promise < string > {
111
- return fs . promises . readFile ( path , 'utf-8' ) ;
115
+ try {
116
+ return await readFile ( path , 'utf-8' ) ;
117
+ } catch {
118
+ throw new Error ( `Failed to read index HTML file "${ path } ".` ) ;
119
+ }
112
120
}
113
121
}
114
122
Original file line number Diff line number Diff line change @@ -57,6 +57,10 @@ export default function (): Rule {
57
57
continue ;
58
58
}
59
59
60
+ if ( options [ 'index' ] === '' ) {
61
+ options [ 'index' ] = false ;
62
+ }
63
+
60
64
// Rename and transform options
61
65
options [ 'browser' ] = options [ 'main' ] ;
62
66
if ( hasServerTarget && typeof options [ 'browser' ] === 'string' ) {
You can’t perform that action at this time.
0 commit comments