File tree 2 files changed +17
-4
lines changed
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @denosaurs/typefetch" ,
3
- "version" : " 0.0.27 " ,
3
+ "version" : " 0.0.28 " ,
4
4
"exports" : {
5
5
"." : " ./main.ts"
6
6
},
Original file line number Diff line number Diff line change @@ -6,14 +6,27 @@ await emptyDir("./npm");
6
6
7
7
await build ( {
8
8
entryPoints : [
9
+ "./mod.ts" ,
9
10
{
10
11
kind : "bin" ,
11
12
name : "typefetch" ,
12
13
path : "./main.ts" ,
13
14
} ,
14
- "./types/headers.ts" ,
15
- "./types/json.ts" ,
16
- "./types/urlsearchparams.ts" ,
15
+ {
16
+ kind : "export" ,
17
+ name : "./types/headers" ,
18
+ path : "./types/headers.ts" ,
19
+ } ,
20
+ {
21
+ kind : "export" ,
22
+ name : "./types/json" ,
23
+ path : "./types/json.ts" ,
24
+ } ,
25
+ {
26
+ kind : "export" ,
27
+ name : "./types/urlsearchparams" ,
28
+ path : "./types/urlsearchparams.ts" ,
29
+ } ,
17
30
] ,
18
31
filterDiagnostic : ( diagnostic ) => {
19
32
// Ignore excessively deep and possibly infinite type errors
You can’t perform that action at this time.
0 commit comments