File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 4
4
"exports" : {
5
5
"." : " ./mod.ts" ,
6
6
"./async" : " ./src/async.ts" ,
7
+ "./utils" : " ./src/utils.ts" ,
7
8
"./providers/appwrite" : " ./src/providers/appwrite.ts" ,
8
9
"./providers/astro" : " ./src/providers/astro.ts" ,
9
10
"./providers/builder.io" : " ./src/providers/builder.io.ts" ,
Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ await build({
36
36
path : "./src/transform.ts" ,
37
37
name : "./transform" ,
38
38
} ,
39
+ {
40
+ path : "./src/utils.ts" ,
41
+ name : "./utils" ,
42
+ } ,
39
43
...entry ,
40
44
] ,
41
45
outDir : "./npm" ,
Original file line number Diff line number Diff line change 1
1
import type { ProviderOperations , ProviderOptions } from "./providers/types.ts" ;
2
- import {
3
- type ImageCdn ,
2
+ import type {
3
+ ImageCdn ,
4
4
OperationFormatter ,
5
5
OperationMap ,
6
6
OperationParser ,
You can’t perform that action at this time.
0 commit comments