@@ -49,7 +49,10 @@ const zExtension = z.object({
49
49
} ) ;
50
50
51
51
const zPackageImport = z . object ( {
52
- source : z . string ( ) ,
52
+ source : z . union ( [
53
+ z . string ( ) ,
54
+ z . object ( { packageName : z . string ( ) , version : z . string ( ) } ) ,
55
+ ] ) ,
53
56
specifier : z . string ( ) ,
54
57
types : z . boolean ( ) . optional ( ) ,
55
58
} ) ;
@@ -88,7 +91,7 @@ export const blockESLint = base.createBlock({
88
91
'import tseslint from "typescript-eslint";' ,
89
92
...imports . map (
90
93
( packageImport ) =>
91
- `import ${ packageImport . specifier } from "${ packageImport . source } "` ,
94
+ `import ${ packageImport . specifier } from "${ typeof packageImport . source === "string" ? packageImport . source : packageImport . source . packageName } "` ,
92
95
) ,
93
96
] . sort ( ( a , b ) =>
94
97
a . replace ( / .+ f r o m / , "" ) . localeCompare ( b . replace ( / .+ f r o m / , "" ) ) ,
@@ -183,17 +186,36 @@ Each should be shown in VS Code, and can be run manually on the command-line:
183
186
} ) ,
184
187
blockPackageJson ( {
185
188
properties : {
186
- devDependencies : getPackageDependencies (
187
- "@eslint/js" ,
188
- "@types/node" ,
189
- "eslint" ,
190
- "typescript-eslint" ,
191
- ...imports . flatMap ( ( { source, types } ) => {
192
- // eslint-disable-next-line @typescript-eslint/no-unsafe-call -- https://github.com/egoist/parse-package-name/issues/30
193
- const { name } = parsePackageName ( source ) as { name : string } ;
194
- return types ? [ name , `@types/${ name } ` ] : [ name ] ;
195
- } ) ,
196
- ) ,
189
+ devDependencies : {
190
+ ...getPackageDependencies (
191
+ "@eslint/js" ,
192
+ "@types/node" ,
193
+ "eslint" ,
194
+ "typescript-eslint" ,
195
+ ...imports
196
+ . filter ( ( imported ) => typeof imported . source === "string" )
197
+ . flatMap ( ( { source, types } ) => {
198
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-call -- https://github.com/egoist/parse-package-name/issues/30
199
+ const { name } = parsePackageName ( source ) as {
200
+ name : string ;
201
+ } ;
202
+ return types ? [ name , `@types/${ name } ` ] : [ name ] ;
203
+ } ) ,
204
+ ) ,
205
+ ...Object . fromEntries (
206
+ imports
207
+ . filter (
208
+ (
209
+ imported ,
210
+ ) : imported is typeof imported & { source : object } =>
211
+ typeof imported . source === "object" ,
212
+ )
213
+ . map ( ( imported ) => [
214
+ imported . source . packageName ,
215
+ imported . source . version ,
216
+ ] ) ,
217
+ ) ,
218
+ } ,
197
219
scripts : {
198
220
lint : "eslint . --max-warnings 0" ,
199
221
} ,
0 commit comments