forked from TanStack/query
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Checkpoint * Split to separate files * Less exports * Update useQuery * v1.0.0-alpha.0 * Refactor to queryCache, reorg files * v1.0.0-alpha.1 * Fixes * Update main.yml * Update main.yml * Update main.yml * Include Helpers * v1.0.0-alpha.2 * Clean up deps * v1.0.0-alpha.3 * Query Cache + tons more and docs * v1.0.0-alpha.4 * [next] add some tests (TanStack#143) * add usePaginatedQuery test * fix setQueryData test * Update utils.js Fix TanStack#147 * Update useMutation.js * Created the queryFnParamsFilter config option for useQuery * Update README.md * Update queryCache.js * Create settings.json * Fixes * v1.0.0-alpha.5 * Update Readme and build * Update README.md * Update README.md * Update CHANGELOG.md * New default for refetchOnMount = true * Update package.json * [next] Regression tests (TanStack#148) * add useQuery ssr test * add useQuery test * add test for dependent queries * add default status test * add status test in manual mode * add test * format test files * expand dependent queries test * ignore __tests__/shared folder * match test files by .test.js filename instead of __test__ folder * do not cache queries with undefined queryHash Fixes TanStack#137 * format * fix typos * Merge with fixes for regressions * update size-plugin * remove size-plugin Co-authored-by: Tanner Linsley <[email protected]> * Remove size plugin * Update useMutation test to not be so noisy. Co-authored-by: Andrew Cherniavskii <[email protected]>
- Loading branch information
1 parent
5040ea8
commit 5f16a50
Showing
58 changed files
with
8,589 additions
and
1,515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Browsers we support | ||
> 0.5% | ||
Chrome >= 73 | ||
ChromeAndroid >= 75 | ||
Firefox >= 67 | ||
Edge >= 17 | ||
IE 11 | ||
Safari >= 12.1 | ||
iOS >= 11.3 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Compressed Size | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2-beta | ||
with: | ||
fetch-depth: 1 | ||
- uses: preactjs/compressed-size-action@v1 | ||
with: | ||
repo-token: '${{ secrets.GITHUB_TOKEN }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
{ | ||
"dist/index.js": { | ||
"bundled": 31777, | ||
"minified": 16088, | ||
"gzipped": 4619 | ||
"bundled": 13805, | ||
"minified": 13734, | ||
"gzipped": 4366 | ||
}, | ||
"dist/index.es.js": { | ||
"bundled": 31236, | ||
"minified": 15605, | ||
"gzipped": 4517, | ||
"bundled": 13779, | ||
"minified": 13730, | ||
"gzipped": 4300, | ||
"treeshaked": { | ||
"rollup": { | ||
"code": 3329, | ||
"code": 7587, | ||
"import_statements": 21 | ||
}, | ||
"webpack": { | ||
"code": 9422 | ||
"code": 8581 | ||
} | ||
} | ||
}, | ||
"dist/index.min.js": { | ||
"bundled": 13734, | ||
"minified": 13734, | ||
"gzipped": 4366 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"workbench.colorCustomizations": { | ||
"titleBar.activeBackground": "#ff4154", // change this color! | ||
"titleBar.inactiveBackground": "#ff4154", // change this color! | ||
"titleBar.activeForeground": "#ffffff", // change this color! | ||
"titleBar.inactiveForeground": "#ffffff" // change this color! | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.