File tree 4 files changed +3
-4
lines changed
4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -161,11 +161,9 @@ class NodeJsSyncHost {
161
161
} ) ;
162
162
}
163
163
isDirectory ( path ) {
164
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
165
164
return this . stat ( path ) . pipe ( ( 0 , rxjs_1 . map ) ( ( stat ) => stat . isDirectory ( ) ) ) ;
166
165
}
167
166
isFile ( path ) {
168
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
169
167
return this . stat ( path ) . pipe ( ( 0 , rxjs_1 . map ) ( ( stat ) => stat . isFile ( ) ) ) ;
170
168
}
171
169
// Some hosts may not support stat.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @angular-devkit/core" ,
3
- "version" : " 18.1.0-next.3+sha-0d2d986 " ,
3
+ "version" : " 18.1.0-next.3+sha-d56c8de " ,
4
4
"description" : " Angular DevKit - Core Utility Library" ,
5
5
"main" : " src/index.js" ,
6
6
"typings" : " src/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -291,6 +291,7 @@ class CoreSchemaRegistry {
291
291
}
292
292
// Validate using ajv
293
293
try {
294
+ // eslint-disable-next-line @typescript-eslint/await-thenable
294
295
const success = await validator . call ( validationContext , data ) ;
295
296
if ( ! success ) {
296
297
return { data, success, errors : validator . errors ?? [ ] } ;
Original file line number Diff line number Diff line change 1
- Tue Jun 25 2024 19:25:10 GMT+0000 (Coordinated Universal Time)
1
+ Tue Jun 25 2024 21:01:45 GMT+0000 (Coordinated Universal Time)
You can’t perform that action at this time.
0 commit comments