File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
lexicons
2
- manifest .json
2
+ lexicons .json
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @lpm/cli" ,
3
3
"exports" : " ./bin.ts" ,
4
- "version" : " 0.1.16 " ,
4
+ "version" : " 0.2.0 " ,
5
5
"license" : " MIT" ,
6
6
7
7
"imports" : {
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ export class FetchCommand implements CommandDescriptor {
75
75
if ( ! manifestDir ) {
76
76
throw new Error ( "Could not determine manifest directory" ) ;
77
77
}
78
- const manifestPath = manifestDir + "/manifest .json" ;
78
+ const manifestPath = manifestDir + "/lexicons .json" ;
79
79
const nsids = JSON . parse ( await this . fs . readText ( manifestPath ) ) . lexicons . map (
80
80
( nsid : string ) => NSID . parse ( nsid ) ,
81
81
) ;
@@ -118,7 +118,7 @@ export class AddCommand implements CommandDescriptor {
118
118
if ( ! manifestDir ) {
119
119
throw new Error ( "Could not determine manifest directory" ) ;
120
120
}
121
- const manifestPath = manifestDir + "/manifest .json" ;
121
+ const manifestPath = manifestDir + "/lexicons .json" ;
122
122
123
123
const manifest = ( await this . fs . exists ( manifestPath ) )
124
124
? JSON . parse ( await this . fs . readText ( manifestPath ) )
You can’t perform that action at this time.
0 commit comments