houdini-svelte 1.0.0-next.9 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -1
- package/build/plugin/transforms/index.d.ts +2 -0
- package/build/plugin-cjs/index.js +4781 -694
- package/build/plugin-esm/index.js +4781 -694
- package/build/preprocess/index.d.ts +1 -0
- package/build/preprocess-cjs/index.js +4659 -609
- package/build/preprocess-esm/index.js +4659 -609
- package/build/runtime/stores/fragment.d.ts +2 -2
- package/build/runtime/stores/mutation.d.ts +2 -2
- package/build/runtime/stores/pagination/cursor.d.ts +2 -1
- package/build/runtime/stores/pagination/fragment.d.ts +3 -3
- package/build/runtime/stores/pagination/offset.d.ts +2 -1
- package/build/runtime/stores/query.d.ts +5 -6
- package/build/runtime/stores/subscription.d.ts +4 -2
- package/build/runtime-cjs/stores/fragment.d.ts +2 -2
- package/build/runtime-cjs/stores/mutation.d.ts +2 -2
- package/build/runtime-cjs/stores/mutation.js +2 -2
- package/build/runtime-cjs/stores/pagination/cursor.d.ts +2 -1
- package/build/runtime-cjs/stores/pagination/cursor.js +3 -1
- package/build/runtime-cjs/stores/pagination/fragment.d.ts +3 -3
- package/build/runtime-cjs/stores/pagination/offset.d.ts +2 -1
- package/build/runtime-cjs/stores/pagination/offset.js +3 -1
- package/build/runtime-cjs/stores/query.d.ts +5 -6
- package/build/runtime-cjs/stores/query.js +22 -13
- package/build/runtime-cjs/stores/subscription.d.ts +4 -2
- package/build/runtime-cjs/stores/subscription.js +7 -2
- package/build/runtime-esm/stores/fragment.d.ts +2 -2
- package/build/runtime-esm/stores/mutation.d.ts +2 -2
- package/build/runtime-esm/stores/mutation.js +2 -2
- package/build/runtime-esm/stores/pagination/cursor.d.ts +2 -1
- package/build/runtime-esm/stores/pagination/cursor.js +3 -1
- package/build/runtime-esm/stores/pagination/fragment.d.ts +3 -3
- package/build/runtime-esm/stores/pagination/offset.d.ts +2 -1
- package/build/runtime-esm/stores/pagination/offset.js +3 -1
- package/build/runtime-esm/stores/query.d.ts +5 -6
- package/build/runtime-esm/stores/query.js +23 -14
- package/build/runtime-esm/stores/subscription.d.ts +4 -2
- package/build/runtime-esm/stores/subscription.js +7 -2
- package/build/test-cjs/index.js +9893 -1498
- package/build/test-esm/index.js +9893 -1498
- package/package.json +6 -8
- package/build/plugin/transforms/reactive.d.ts +0 -3
package/README.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<
|
|
2
|
+
<picture>
|
|
3
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assetss/logo_l.svg">
|
|
4
|
+
<img height="140" alt="Houdini's logo (dark or light)" src="https://raw.githubusercontent.com/HoudiniGraphql/houdini/main/.github/assets/logo_d.svg">
|
|
5
|
+
</picture>
|
|
3
6
|
<br />
|
|
4
7
|
<br />
|
|
5
8
|
<strong>
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import type { TransformPage } from 'houdini/vite';
|
|
2
|
+
import type { SourceMapInput } from 'rollup';
|
|
2
3
|
import type { Framework } from '../kit';
|
|
3
4
|
export default function apply_transforms(framework: Framework, page: TransformPage): Promise<{
|
|
4
5
|
code: string;
|
|
6
|
+
map?: SourceMapInput;
|
|
5
7
|
}>;
|