Skip to content

Commit 36d8b21

Browse files
authored
chore(deps): update dependencies across app-client and app-server (#409)
- Updated @corentinth/chisels to v1.1.0 in both app-client and app-server. - Updated @iconify-json/tabler to v1.2.17 in app-client. - Updated dotenv to v16.4.7 in app-server. - Updated @total-typescript/ts-reset to v0.6.1 in app-server. - Updated bcryptjs to v3.0.2 in app-server. - Updated solid-js to v1.9.5 in app-client. - Updated tsx to v4.19.3 in both app-client and app-server. - Updated vitest to v2.1.9 in both app-client and app-server. - Updated various other dependencies to their latest versions.
1 parent 5c5dbca commit 36d8b21

File tree

8 files changed

+2415
-2000
lines changed

8 files changed

+2415
-2000
lines changed

packages/app-client/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"script:get-missing-i18n-keys": "tsx src/scripts/get-missing-i18n-keys.script.ts"
2929
},
3030
"dependencies": {
31-
"@corentinth/chisels": "^1.0.2",
31+
"@corentinth/chisels": "^1.1.0",
3232
"@enclosed/lib": "workspace:*",
3333
"@kobalte/core": "^0.13.4",
3434
"@solid-primitives/i18n": "^2.1.1",
@@ -39,25 +39,25 @@
3939
"clsx": "^2.1.1",
4040
"jszip": "^3.10.1",
4141
"lodash-es": "^4.17.21",
42-
"solid-js": "^1.8.11",
42+
"solid-js": "^1.9.5",
4343
"solid-sonner": "^0.2.8",
4444
"tailwind-merge": "^2.5.2",
4545
"unocss-preset-animations": "^1.1.0",
4646
"uqr": "^0.1.2"
4747
},
4848
"devDependencies": {
4949
"@antfu/eslint-config": "catalog:",
50-
"@iconify-json/tabler": "^1.1.120",
50+
"@iconify-json/tabler": "^1.2.17",
5151
"@playwright/test": "^1.46.1",
5252
"@types/lodash-es": "^4.17.12",
5353
"@types/node": "catalog:",
5454
"eslint": "catalog:",
5555
"jsdom": "^25.0.0",
56-
"tsx": "^4.19.1",
56+
"tsx": "^4.19.3",
5757
"typescript": "catalog:",
5858
"unocss": "^0.64.0",
5959
"vite": "^5.0.11",
60-
"vite-plugin-solid": "^2.8.2",
60+
"vite-plugin-solid": "^2.11.6",
6161
"vitest": "catalog:"
6262
}
6363
}

packages/app-server/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"script:generate-config-table": "tsx -r dotenv/config src/scripts/generate-config-table.script.ts"
2929
},
3030
"dependencies": {
31-
"@corentinth/chisels": "^1.0.4",
31+
"@corentinth/chisels": "^1.1.0",
3232
"@enclosed/lib": "workspace:*",
3333
"@hono/node-server": "^1.12.1",
3434
"bcryptjs": "^2.4.3",
@@ -45,19 +45,19 @@
4545
"devDependencies": {
4646
"@antfu/eslint-config": "catalog:",
4747
"@cloudflare/workers-types": "^4.20240821.1",
48-
"@total-typescript/ts-reset": "^0.6.0",
48+
"@total-typescript/ts-reset": "^0.6.1",
4949
"@types/bcryptjs": "^2.4.6",
5050
"@types/lodash-es": "^4.17.12",
5151
"@types/node-cron": "^3.0.11",
52-
"@vitest/coverage-v8": "^2.0.5",
53-
"dotenv": "^16.4.5",
52+
"@vitest/coverage-v8": "catalog:",
53+
"dotenv": "^16.4.7",
5454
"esbuild": "^0.24.0",
5555
"eslint": "catalog:",
5656
"pino-pretty": "^11.2.2",
5757
"tsx": "catalog:",
5858
"typescript": "catalog:",
5959
"vitest": "catalog:",
6060
"wrangler": "^3.72.1",
61-
"zx": "^8.1.4"
61+
"zx": "^8.4.1"
6262
}
6363
}

packages/app-server/src/modules/shared/errors/errors.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { StatusCode } from 'hono/utils/http-status';
1+
import type { ContentfulStatusCode } from 'hono/utils/http-status';
22
import { get, isError, toString } from 'lodash-es';
33

44
export { createError, createErrorFactory, isCustomError };
@@ -7,14 +7,14 @@ type ErrorOptions = {
77
message: string;
88
code: string;
99
cause?: unknown;
10-
statusCode: StatusCode;
10+
statusCode: ContentfulStatusCode;
1111
isInternal?: boolean;
1212
};
1313

1414
class CustomError extends Error {
1515
code: string;
1616
cause?: Error | null;
17-
statusCode: StatusCode;
17+
statusCode: ContentfulStatusCode;
1818
isCustomError = true;
1919
isInternal?: boolean;
2020

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"devDependencies": {
4646
"@antfu/eslint-config": "catalog:",
4747
"@types/lodash-es": "^4.17.12",
48-
"@vitest/coverage-v8": "^2.0.5",
48+
"@vitest/coverage-v8": "catalog:",
4949
"dotenv": "^16.4.5",
5050
"eslint": "catalog:",
5151
"tsx": "catalog:",

packages/crypto/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
"@antfu/eslint-config": "catalog:",
8484
"@types/lodash-es": "^4.17.12",
8585
"@types/node": "catalog:",
86-
"@vitest/coverage-v8": "^2.0.5",
86+
"@vitest/coverage-v8": "catalog:",
8787
"eslint": "catalog:",
8888
"tsx": "catalog:",
8989
"typescript": "catalog:",

packages/lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"@antfu/eslint-config": "catalog:",
4646
"@types/lodash-es": "^4.17.12",
4747
"@types/node": "catalog:",
48-
"@vitest/coverage-v8": "^2.0.5",
48+
"@vitest/coverage-v8": "catalog:",
4949
"dotenv": "^16.4.5",
5050
"eslint": "catalog:",
5151
"tsx": "catalog:",

0 commit comments

Comments
 (0)