File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export class AsdfLocalResource extends Resource<AsdfLocalConfig> {
3131 directories : {
3232 type : 'array' ,
3333 canModify : true ,
34- inputTransformation : ( input ) => input . map ( ( i ) => untildify ( i ) ) ,
34+ inputTransformation : ( input ) => input . map ( ( i : any ) => untildify ( i ) ) ,
3535 } ,
3636 version : {
3737 canModify : true ,
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ export class AsdfPluginResource extends Resource<AsdfPluginConfig> {
4343 return null ;
4444 }
4545
46- console . log ( matches ) ;
47-
4846 const [ original , name , gitUrl ] = matches ;
4947 return [ name , gitUrl ] as const ;
5048 } ) . filter ( Boolean )
49+ . map ( ( l ) => l ! ) ;
50+
5151
5252 const installedPlugin = installedVersions . find ( ( [ name ] ) => name === parameters . plugin ) ;
5353 if ( ! installedPlugin ) {
You can’t perform that action at this time.
0 commit comments