Skip to content

Commit

Permalink
(fix: solid-query): Revert breaking build (#4733)
Browse files Browse the repository at this point in the history
This is in reference to the breaking build in solid-query.
Because client Context value is never passed into the provider
RELEASE_ALL
  • Loading branch information
ardeora committed Jan 1, 2023
1 parent 7d3f803 commit 17afa9b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/solid-query/package.json
Expand Up @@ -16,7 +16,7 @@
"exports": {
".": {
"types": "./build/lib/index.d.ts",
"solid": "./build/solid/index.jsx",
"solid": "./build/solid/index.js",
"import": "./build/lib/index.mjs",
"browser": "./build/lib/index.mjs",
"require": "./build/lib/index.js",
Expand Down
File renamed without changes.
8 changes: 4 additions & 4 deletions rollup.config.ts
Expand Up @@ -120,12 +120,12 @@ export default function rollup(options: RollupOptions): RollupOptions[] {
'@tanstack/react-query': 'ReactQuery',
'@tanstack/match-sorter-utils': 'MatchSorterUtils',
'use-sync-external-store/shim/index.js': 'UseSyncExternalStore',
"superjson": 'SuperJson',
superjson: 'SuperJson',
},
bundleUMDGlobals: [
'@tanstack/match-sorter-utils',
'use-sync-external-store/shim/index.js',
"superjson",
'superjson',
],
}),
...buildConfigs({
Expand All @@ -140,7 +140,7 @@ export default function rollup(options: RollupOptions): RollupOptions[] {
'@tanstack/react-query': 'ReactQuery',
'@tanstack/match-sorter-utils': 'MatchSorterUtils',
'use-sync-external-store/shim/index.js': 'UseSyncExternalStore',
"superjson": 'SuperJson',
superjson: 'SuperJson',
},
forceDevEnv: true,
forceBundle: true,
Expand All @@ -164,7 +164,7 @@ export default function rollup(options: RollupOptions): RollupOptions[] {
packageDir: 'packages/solid-query',
jsName: 'SolidQuery',
outputFile: 'index',
entryFile: 'src/index.tsx',
entryFile: 'src/index.ts',
globals: {
'solid-js/store': 'SolidStore',
'solid-js': 'Solid',
Expand Down

0 comments on commit 17afa9b

Please sign in to comment.