repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

commit
7fa2483
parent
98a9de7
author
Eric Bower
date
2024-01-21 20:27:25 +0000 UTC
fix: parcel bundler import export destructuring

For whatever reason, parcel doesn't like that we are importing from
"thunk" and exporting at the same time.
1 files changed,  +2, -3
M query/mod.ts
+2, -3
 1@@ -1,11 +1,10 @@
 2-import { createThunks } from "./thunk.ts";
 3-export * from "./thunk.ts";
 4+import { createThunks, type ThunksApi } from "./thunk.ts";
 5 export * from "./api.ts";
 6 export * from "./types.ts";
 7 export * from "./create-key.ts";
 8 import * as mdw from "./mdw.ts";
 9 
10-export { mdw };
11+export { createThunks, mdw, ThunksApi };
12 
13 /**
14  * @deprecated Use {@link createThunks} instead;