Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Feb 20, 2024
1 parent dd776f6 commit 95ae53c
Show file tree
Hide file tree
Showing 5 changed files with 784 additions and 677 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@ This repository contains Logux base components to build web client:

Check **[demo page]** for widget UI.

<a href="https://evilmartians.com/?utm_source=logux-client">
<img src="https://evilmartians.com/badges/sponsored-by-evil-martians.svg"
alt="Sponsored by Evil Martians" width="236" height="54">
</a>

[demo page]: https://logux.github.io/client/
[cult-img]: http://cultofmartians.com/assets/badges/badge.svg
[cult]: http://cultofmartians.com/done.html

---

<img src="https://cdn.evilmartians.com/badges/logo-no-label.svg" alt="" width="22" height="16" /> Made in <b><a href="https://evilmartians.com/devtools?utm_source=logux-client&utm_campaign=devtools-button&utm_medium=github">Evil Martians</a></b>, product consulting for <b>developer tools</b>.

---


## Install

Expand Down
6 changes: 3 additions & 3 deletions create-filter/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ it('updates list on store create/deleted/change', async () => {
projectId: '1'
})
let changes: string[] = []
posts.listen((value, key) => {
posts.listen((value, old, key) => {
changes.push(key)
})

Expand Down Expand Up @@ -609,7 +609,7 @@ it('triggers on child changes', async () => {
let posts = createFilter(client, Post, { authorId: '10' })
posts.listen(() => {})
let calls: (string | undefined)[] = []
posts.subscribe((value, key) => {
posts.subscribe((value, old, key) => {
calls.push(key)
})
await posts.loading
Expand Down Expand Up @@ -644,7 +644,7 @@ it('can ignore child changes', async () => {
)
posts.listen(() => {})
let calls: (string | undefined)[] = []
posts.subscribe((value, key) => {
posts.subscribe((value, old, key) => {
calls.push(key)
})
await posts.loading
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,27 +76,27 @@
"fast-json-stable-stringify": "^2.1.0",
"nanodelay": "^2.0.2",
"nanoevents": "^9.0.0",
"nanoid": "^5.0.4"
"nanoid": "^5.0.6"
},
"devDependencies": {
"@logux/core": "github:logux/core#next",
"@logux/eslint-config": "^52.0.2",
"@nanostores/preact": "^0.5.0",
"@nanostores/react": "^0.7.1",
"@nanostores/preact": "^0.5.1",
"@nanostores/react": "^0.7.2",
"@nanostores/vue": "^0.10.0",
"@peculiar/webcrypto": "^1.4.4",
"@peculiar/webcrypto": "^1.4.5",
"@size-limit/preset-small-lib": "^11.0.2",
"@testing-library/preact": "^3.2.3",
"@testing-library/react": "^14.1.2",
"@testing-library/vue": "^8.0.1",
"@types/node": "^20.11.5",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@testing-library/react": "^14.2.1",
"@testing-library/vue": "^8.0.2",
"@types/node": "^20.11.19",
"@types/react": "^18.2.57",
"@types/react-dom": "^18.2.19",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitest/coverage-v8": "^1.2.1",
"@vue/compiler-sfc": "^3.4.15",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitest/coverage-v8": "^1.3.1",
"@vue/compiler-sfc": "^3.4.19",
"check-dts": "^0.7.2",
"clean-publish": "^4.2.0",
"eslint": "^8.56.0",
Expand All @@ -107,21 +107,21 @@
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"fake-indexeddb": "^5.0.2",
"happy-dom": "^13.1.4",
"happy-dom": "^13.3.8",
"nanospy": "^1.0.0",
"nanostores": "^0.9.5",
"nanostores": "^0.10.0",
"picocolors": "^1.0.0",
"postcss": "^8.4.33",
"preact": "10.15.1",
"postcss": "^8.4.35",
"preact": "10.19.5",
"print-snapshots": "^0.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"size-limit": "^11.0.2",
"svgo": "^3.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitest": "^1.2.1",
"vue": "^3.4.15"
"vite": "^5.1.3",
"vitest": "^1.3.1",
"vue": "^3.4.19"
},
"prettier": {
"arrowParens": "avoid",
Expand Down
Loading

0 comments on commit 95ae53c

Please sign in to comment.