Skip to content

Commit 7e0ac97

Browse files
committed
chore(query core): fix docs, update core
1 parent 84c8329 commit 7e0ac97

35 files changed

+214
-198
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
## Questions
44

5-
If you have questions about implementation details, help or support, then please use our dedicated community forum at [Github Discussions](https://github.com//TanStack/svelte-query/discussions) **PLEASE NOTE:** If you choose to instead open an issue for your question, your issue will be immediately closed and redirected to the forum.
5+
If you have questions about implementation details, help or support, then please use our dedicated community forum at [Github Discussions](https://github.com//SvelteStack/svelte-query/discussions) **PLEASE NOTE:** If you choose to instead open an issue for your question, your issue will be immediately closed and redirected to the forum.
66

77
## Reporting Issues
88

9-
If you have found what you think is a bug, please [file an issue](https://github.com/TanStack/svelte-query/issues/new). **PLEASE NOTE:** Issues that are identified as implementation questions or non-issues will be immediately closed and redirected to [Github Discussions](https://github.com/TanStack/svelte-query/discussions)
9+
If you have found what you think is a bug, please [file an issue](https://github.com/SvelteStack/svelte-query/issues/new). **PLEASE NOTE:** Issues that are identified as implementation questions or non-issues will be immediately closed and redirected to [Github Discussions](https://github.com/SvelteStack/svelte-query/discussions)
1010

1111
## Suggesting new features
1212

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 TanStack
3+
Copyright (c) 2020 SvelteStack
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ up the merging process.
2828
**Get started (Devs)**
2929

3030
```bash
31-
git clone [email protected]:TanStack/svelte-query.git
31+
git clone [email protected]:SvelteStack/svelte-query.git
3232
cd svelte-query
3333
yarn
3434
yarn storybook

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Svelte Query Docs
22

3-
This is source code to svelte-query.tanstack.com. It is forked from the [Formik](https://formik.org) docs and is built with:
3+
This is source code to svelte-query.sveltestack.com. It is forked from the [Formik](https://formik.org) docs and is built with:
44

55
- Next.js
66
- MDX

docs/next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const remarkPlugins = [
2222
require('remark-images'),
2323
[
2424
require('remark-github'),
25-
{ repository: 'https://github.com/TanStack/svelte-query' },
25+
{ repository: 'https://github.com/SvelteStack/svelte-query' },
2626
],
2727
require('remark-unwrap-images'),
2828
[

docs/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"@next/mdx": "^9.5.3",
2121
"@next/plugin-google-analytics": "^9.5.3",
2222
"@reactions/component": "^2.0.2",
23-
"@visx/hierarchy": "^1.0.0",
2423
"@visx/responsive": "^1.3.0",
2524
"@zeit/fetch": "^6.0.0",
2625
"@zeit/react-jsx-parser": "^2.0.0",

docs/src/components/Seo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const Seo = withRouter(
1111
{/* DEFAULT */}
1212

1313
{title != undefined && (
14-
<title key="title">{title} | Svelte Query | TanStack</title>
14+
<title key="title">{title} | Svelte Query | SvelteStack</title>
1515
)}
1616
{description != undefined && (
1717
<meta name="description" key="description" content={description} />

docs/src/pages/examples/basic-graphql-request.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Basic w/ GraphQL-Request
44
toc: false
55
---
66

7-
- [Open in CodeSandbox](https://codesandbox.io/s/github/TanStack/svelte-query/tree/main/examples/basic-graphql-request)
8-
- [View Source](https://github.com/TanStack/svelte-query/tree/main/examples/basic-graphql-request)
7+
- [Open in CodeSandbox](https://codesandbox.io/s/github/SvelteStack/svelte-query/tree/main/examples/basic-graphql-request)
8+
- [View Source](https://github.com/SvelteStack/svelte-query/tree/main/examples/basic-graphql-request)
99

1010
<iframe
11-
src="https://codesandbox.io/embed/github/TanStack/svelte-query/tree/main/examples/basic-graphql-request?autoresize=1&fontsize=14&theme=dark"
12-
title="TanStack/svelte-query: basic-graphql-request"
11+
src="https://codesandbox.io/embed/github/SvelteStack/svelte-query/tree/main/examples/basic-graphql-request?autoresize=1&fontsize=14&theme=dark"
12+
title="SvelteStack/svelte-query: basic-graphql-request"
1313
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
1414
style={{
1515
width: '100%',

docs/src/pages/examples/basic.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Basic
44
toc: false
55
---
66

7-
- [Open in CodeSandbox](https://codesandbox.io/s/github/TanStack/svelte-query/tree/main/examples/basic)
8-
- [View Source](https://github.com/TanStack/svelte-query/tree/main/examples/basic)
7+
- [Open in CodeSandbox](https://codesandbox.io/s/github/SvelteStack/svelte-query/tree/main/examples/basic)
8+
- [View Source](https://github.com/SvelteStack/svelte-query/tree/main/examples/basic)
99

1010
<iframe
11-
src="https://codesandbox.io/embed/github/TanStack/svelte-query/tree/main/examples/basic?autoresize=1&fontsize=14&theme=dark"
12-
title="TanStack/svelte-query: basic"
11+
src="https://codesandbox.io/embed/github/SvelteStack/svelte-query/tree/main/examples/basic?autoresize=1&fontsize=14&theme=dark"
12+
title="SvelteStack/svelte-query: basic"
1313
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
1414
style={{
1515
width: '100%',

docs/src/pages/examples/custom-hooks.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Custom Hooks
44
toc: false
55
---
66

7-
- [Open in CodeSandbox](https://codesandbox.io/s/github/TanStack/svelte-query/tree/main/examples/custom-hooks)
8-
- [View Source](https://github.com/TanStack/svelte-query/tree/main/examples/custom-hooks)
7+
- [Open in CodeSandbox](https://codesandbox.io/s/github/SvelteStack/svelte-query/tree/main/examples/custom-hooks)
8+
- [View Source](https://github.com/SvelteStack/svelte-query/tree/main/examples/custom-hooks)
99

1010
<iframe
11-
src="https://codesandbox.io/embed/github/TanStack/svelte-query/tree/main/examples/custom-hooks?autoresize=1&fontsize=14&theme=dark"
12-
title="TanStack/svelte-query: custom-hooks"
11+
src="https://codesandbox.io/embed/github/SvelteStack/svelte-query/tree/main/examples/custom-hooks?autoresize=1&fontsize=14&theme=dark"
12+
title="SvelteStack/svelte-query: custom-hooks"
1313
sandbox="allow-forms allow-modals allow-popups allow-presentation allow-same-origin allow-scripts"
1414
style={{
1515
width: '100%',

0 commit comments

Comments
 (0)