Skip to content

Commit aded1b7

Browse files
fix(query-devtools): Bundle all dependencies (#5684)
1 parent 0b2ddb5 commit aded1b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/query-devtools/rollup.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ export function createQueryDevtoolsConfig() {
88
withSolid({
99
input: `./src/index.tsx`,
1010
targets: ['esm', 'cjs'],
11-
external: [],
1211
})
1312
)
1413

14+
solidRollupOptions.external = []
15+
1516
const outputs = !solidRollupOptions.output
1617
? []
1718
: Array.isArray(solidRollupOptions.output)

packages/solid-query/rollup.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ export function createSolidQueryConfig() {
88
withSolid({
99
input: `./src/index.ts`,
1010
targets: ['esm', 'cjs'],
11-
external: ['@tanstack/query-core'],
1211
})
1312
)
1413

0 commit comments

Comments
 (0)