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

chore(deps): update all non-major dependencies #155

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 6 additions & 2 deletions docs/reference/classes/derived.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,9 @@ registerOnGraph(deps): void

##### deps

readonly ([`Derived`](derived.md)\<`any`, readonly `any`[]\> \| [`Store`](store.md)\<`any`, (`cb`) => `any`\>)[] = `...`
readonly (
\| [`Derived`](derived.md)\<`any`\>
\| [`Store`](store.md)\<`any`, (`cb`) => `any`\>)[] = `...`

#### Returns

Expand Down Expand Up @@ -239,7 +241,9 @@ unregisterFromGraph(deps): void

##### deps

readonly ([`Derived`](derived.md)\<`any`, readonly `any`[]\> \| [`Store`](store.md)\<`any`, (`cb`) => `any`\>)[] = `...`
readonly (
\| [`Derived`](derived.md)\<`any`\>
\| [`Store`](store.md)\<`any`, (`cb`) => `any`\>)[] = `...`

#### Returns

Expand Down
4 changes: 3 additions & 1 deletion docs/reference/interfaces/derivedfnprops.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ title: DerivedFnProps

## Type Parameters

• **TArr** *extends* `ReadonlyArray`\<[`Derived`](../classes/derived.md)\<`any`\> \| [`Store`](../classes/store.md)\<`any`\>\> = `ReadonlyArray`\<`any`\>
• **TArr** *extends* `ReadonlyArray`\<
\| [`Derived`](../classes/derived.md)\<`any`\>
\| [`Store`](../classes/store.md)\<`any`\>\> = `ReadonlyArray`\<`any`\>

• **TUnwrappedArr** *extends* `UnwrapReadonlyDerivedOrStoreArray`\<`TArr`\> = `UnwrapReadonlyDerivedOrStoreArray`\<`TArr`\>

Expand Down
6 changes: 4 additions & 2 deletions docs/reference/interfaces/derivedoptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ title: DerivedOptions

• **TState**

• **TArr** *extends* `ReadonlyArray`\<[`Derived`](../classes/derived.md)\<`any`\> \| [`Store`](../classes/store.md)\<`any`\>\> = `ReadonlyArray`\<`any`\>
• **TArr** *extends* `ReadonlyArray`\<
\| [`Derived`](../classes/derived.md)\<`any`\>
\| [`Store`](../classes/store.md)\<`any`\>\> = `ReadonlyArray`\<`any`\>

## Properties

Expand Down Expand Up @@ -63,7 +65,7 @@ optional onSubscribe: (listener, derived) => () => void;

##### derived

[`Derived`](../classes/derived.md)\<`TState`, readonly `any`[]\>
[`Derived`](../classes/derived.md)\<`TState`\>

#### Returns

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/type-aliases/unwrapderivedorstore.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: UnwrapDerivedOrStore
# Type Alias: UnwrapDerivedOrStore\<T\>

```ts
type UnwrapDerivedOrStore<T>: T extends Derived<infer InnerD> ? InnerD : T extends Store<infer InnerS> ? InnerS : never;
type UnwrapDerivedOrStore<T> = T extends Derived<infer InnerD> ? InnerD : T extends Store<infer InnerS> ? InnerS : never;
```

## Type Parameters
Expand Down
4 changes: 3 additions & 1 deletion docs/reference/variables/depsthathavewrittenthistick.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ const __depsThatHaveWrittenThisTick: object;
### current

```ts
current: (Derived<unknown, readonly any[]> | Store<unknown, (cb) => unknown>)[];
current: (
| Derived<unknown>
| Store<unknown, (cb) => unknown>)[];
```

## Defined in
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/variables/derivedtostore.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: __derivedToStore
# Variable: \_\_derivedToStore

```ts
const __derivedToStore: WeakMap<Derived<unknown, readonly any[]>, Set<Store<unknown, (cb) => unknown>>>;
const __derivedToStore: WeakMap<Derived<unknown>, Set<Store<unknown, (cb) => unknown>>>;
```

## Defined in
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/variables/storetoderived.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ title: __storeToDerived
# Variable: \_\_storeToDerived

```ts
const __storeToDerived: WeakMap<Store<unknown, (cb) => unknown>, Set<Derived<unknown, readonly any[]>>>;
const __storeToDerived: WeakMap<Store<unknown, (cb) => unknown>, Set<Derived<unknown>>>;
```

This is here to solve the pyramid dependency problem where:
Expand Down
2 changes: 1 addition & 1 deletion examples/svelte/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@tsconfig/svelte": "^5.0.4",
"svelte": "^5.15.0",
"svelte": "^5.16.0",
"svelte-check": "^4.1.1",
"tslib": "^2.8.1",
"typescript": "5.6.3",
Expand Down
2 changes: 1 addition & 1 deletion examples/vue/simple/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "5.6.3",
"vite": "^5.4.11",
"vue-tsc": "^2.1.10"
"vue-tsc": "^2.2.0"
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "root",
"private": true,
"repository": "https://github.com/tanstack/store.git",
"packageManager": "[email protected].1",
"packageManager": "[email protected].2",
"type": "module",
"scripts": {
"clean": "pnpm --filter \"./packages/**\" run clean",
Expand Down Expand Up @@ -35,9 +35,9 @@
]
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^1.22.0",
"@eslint-react/eslint-plugin": "^1.22.1",
"@solidjs/testing-library": "^0.8.10",
"@tanstack/config": "^0.14.2",
"@tanstack/config": "^0.15.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
],
"devDependencies": {
"@angular/core": "^19.0.5",
"@preact/signals": "^1.3.0",
"@preact/signals": "^1.3.1",
"solid-js": "^1.9.3",
"vue": "^3.5.13"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@testing-library/svelte": "^5.2.6",
"eslint-plugin-svelte": "^2.46.1",
"svelte": "^5.15.0",
"svelte": "^5.16.0",
"svelte-check": "^4.1.1"
},
"peerDependencies": {
Expand Down
Loading
Loading