Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🎉 Including SolidJS and Vue3 support #151

Draft
wants to merge 35 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2387581
adding solid
luiguild May 27, 2024
bd20b37
fix
jimdebeer May 27, 2024
15745fb
Porting components to SolidJS
luiguild May 28, 2024
ea49265
Fixing the React readme and starting to work on the Solid readme
luiguild May 28, 2024
056aa7d
* Including comments and documentation for all Solid hooks and compon…
luiguild May 30, 2024
25834b5
* Including comments and documentation for all Solid hooks and compon…
luiguild May 30, 2024
4f9d426
* Including esbuild file configuration
luiguild May 31, 2024
c3d26c4
Applying Prettier to the code
luiguild May 31, 2024
c71a842
* Porting UseBasedAuth
luiguild May 31, 2024
8f30de6
Fixing import path from relative to static
luiguild May 31, 2024
5c51df3
Fixing exports
luiguild May 31, 2024
43e390c
Fixing signals from UseBasedStatus
luiguild May 31, 2024
0ca3cf3
new test
youzi May 31, 2024
df1ed38
Fixing signals from UseBasedQuery
luiguild Jun 3, 2024
4d1f40b
Removing aliases
luiguild Jun 3, 2024
a2326a6
Fixing returning accessors
luiguild Jun 3, 2024
76f7f2a
Fixing returning accessors, hook useBasedQuery fixed returning signal…
luiguild Jun 3, 2024
47183c1
Improving the demo page layout
luiguild Jun 3, 2024
c9deca6
Fixing wrong import
luiguild Jun 3, 2024
caf858b
Fixing paths and some file names on the solid side and including the …
luiguild Jun 4, 2024
c785981
Removing * from some comments
luiguild Jun 4, 2024
f2e93da
Normalizing the React package to be aligned with the Solid and Vue pa…
luiguild Jun 5, 2024
c737e79
improving the README of libraries and changing the approach with the …
luiguild Jun 6, 2024
59f53f5
editing gitignore
luiguild Jun 11, 2024
c2ad5ff
removing .idea files
luiguild Jun 11, 2024
bb90cdd
Rollback react changes
luiguild Jun 18, 2024
e2be4fb
use files vs npmignore
youzi Jun 18, 2024
b617856
use files vs npmignore on vue
luiguild Jun 18, 2024
5258ff3
lowering the version of the vue package
luiguild Jun 18, 2024
ca82bd0
fixing files path to npm
luiguild Jun 18, 2024
8f67569
fixing the whole bundling, fixing the indentation on README.md, fixin…
luiguild Jun 19, 2024
498b8e8
Changing the name of the hook from useBasedClient to useBasedContext …
luiguild Jun 26, 2024
c97a0bc
Publishing a new patch
luiguild Jun 27, 2024
1924145
Including new component to show Based Status
luiguild Jul 10, 2024
2e8d301
Updating README.md, including BasedLiveStatus.tsx as an overlay that …
luiguild Jul 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ yarn-error.log*
lerna-debug.log*

.vscode
.idea

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down
12,350 changes: 9,046 additions & 3,304 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"http-proxy": "^1.18.1",
"turbo": "1.6.3",
"@saulx/prettier-config": "2.0.0",
"@saulx/tsconfig": "^1.1.0",
"@saulx/tsconfig": "^1.1.3",
"http-proxy": "^1.18.1",
"lint-staged": "12.1.2",
"rimraf": "^3.0.2",
"turbo": "1.6.3",
"typescript": "^5.2.2"
}
}
2 changes: 1 addition & 1 deletion packages/client/src/types/cache.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export type CacheValue = {
v: any // value
c: number // checksum
p?: boolean // persitent
p?: boolean // persistent
s?: number // size
}

Expand Down
Loading