Skip to content

Commit

Permalink
Chore: Bump dev dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SBoudrias committed Sep 15, 2024
1 parent 407400d commit c17cd67
Show file tree
Hide file tree
Showing 56 changed files with 298 additions and 219 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,28 +48,28 @@
"zsh"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.1",
"@eslint/js": "^9.9.1",
"@arethetypeswrong/cli": "^0.16.2",
"@eslint/js": "^9.10.0",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/node": "^22.5.2",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/ui": "^2.0.5",
"eslint": "^9.9.1",
"@types/node": "^22.5.5",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^55.0.0",
"globals": "^15.9.0",
"globby": "^14.0.2",
"husky": "^9.1.5",
"husky": "^9.1.6",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"turbo": "^2.1.1",
"turbo": "^2.1.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"vitest": "^2.0.5"
"typescript-eslint": "^8.5.0",
"vitest": "^2.1.1"
},
"resolutions": {
"type-fest": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@inquirer/figures": "^1.0.5",
"@inquirer/type": "^1.5.3",
"@types/mute-stream": "^0.0.4",
"@types/node": "^22.5.2",
"@types/node": "^22.5.5",
"@types/wrap-ansi": "^3.0.0",
"ansi-escapes": "^4.3.2",
"cli-spinners": "^2.9.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/lib/use-state.mts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function useState<Value>(
): [Value, (newValue: Value) => void];
export function useState<Value>(
defaultValue?: NotFunction<Value> | (() => Value),
): [Value | undefined, (newValue?: Value | undefined) => void];
): [Value | undefined, (newValue?: Value) => void];
export function useState<Value>(defaultValue: NotFunction<Value> | (() => Value)) {
return withPointer<Value, [Value, (newValue: Value) => void]>((pointer) => {
const setFn = (newValue: Value) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"dependencies": {
"@inquirer/type": "^1.5.3",
"@types/mute-stream": "^0.0.4",
"@types/node": "^22.5.2",
"@types/node": "^22.5.5",
"ansi-escapes": "^4.3.2",
"mute-stream": "^1.0.0",
"strip-ansi": "^6.0.1"
Expand Down
Loading

0 comments on commit c17cd67

Please sign in to comment.