fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: use configResolved hook

Lubos cee4508f d54654f7

+7 -1
+5
.changeset/curvy-chicken-swim.md
··· 1 + --- 2 + '@hey-api/rollup-plugin': patch 3 + --- 4 + 5 + fix: use configResolved hook
+2 -1
packages/rollup-plugin/src/index.ts
··· 7 7 config?: Parameters<typeof createClient>[0]; 8 8 }) { 9 9 return { 10 - buildStart: async () => { 10 + // TODO: rename to vite-plugin if we end up using `configResolved` 11 + configResolved: async () => { 11 12 await createClient(options?.config); 12 13 }, 13 14 enforce: 'pre',