Skip to content

Commit 443debe

Browse files
committed
chore: bump deps
1 parent c442d76 commit 443debe

File tree

7 files changed

+10060
-7059
lines changed

7 files changed

+10060
-7059
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ node_modules/
1212
.wrangler
1313
coverage
1414
.dev.vars*
15+
.pnp.*
16+
.yarn

.yarnrc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

frontend/components/CodeEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const tabSettings: TabSetting[] = [
5959
]
6060

6161
function handleNewLines(str: string): string {
62-
if (str.at(-1) === "\n") {
62+
if (str.charAt(-1) === "\n") {
6363
str += " "
6464
}
6565
return str

package.json

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -23,25 +23,25 @@
2323
"author": "SharzyL <[email protected]>",
2424
"license": "MIT",
2525
"devDependencies": {
26-
"@cloudflare/vitest-pool-workers": "^0.8.22",
26+
"@cloudflare/vitest-pool-workers": "^0.11.1",
2727
"@craftamap/esbuild-plugin-html": "^0.9.0",
28-
"@testing-library/dom": "^10.4.0",
29-
"@testing-library/jest-dom": "^6.6.3",
30-
"@testing-library/react": "^16.3.0",
28+
"@testing-library/dom": "^10.4.1",
29+
"@testing-library/jest-dom": "^6.9.1",
30+
"@testing-library/react": "^16.3.1",
3131
"@testing-library/user-event": "^14.6.1",
32-
"@types/node": "^22.14.1",
33-
"@vitejs/plugin-react": "^4.4.1",
34-
"@vitest/coverage-istanbul": "3.1.1",
35-
"eslint": "^9.25.0",
36-
"jsdom": "^26.1.0",
37-
"msw": "^2.7.5",
38-
"prettier": "^3.5.3",
32+
"@types/node": "^25.0.3",
33+
"@vitejs/plugin-react": "^5.1.2",
34+
"@vitest/coverage-istanbul": "3.2.4",
35+
"eslint": "^9.39.2",
36+
"jsdom": "^27.3.0",
37+
"msw": "^2.12.4",
38+
"prettier": "^3.7.4",
3939
"toml": "^3.0.0",
40-
"typescript": "^5.8.3",
41-
"typescript-eslint": "^8.30.1",
42-
"vite": "^6.3.3",
43-
"vitest": "3.1.1",
44-
"wrangler": "^4.13.2"
40+
"typescript": "^5.9.3",
41+
"typescript-eslint": "^8.50.0",
42+
"vite": "^7.3.0",
43+
"vitest": "3.2.4",
44+
"wrangler": "^4.56.0"
4545
},
4646
"prettier": {
4747
"singleQuote": false,
@@ -51,25 +51,25 @@
5151
"printWidth": 120
5252
},
5353
"dependencies": {
54-
"@heroui/react": "2.8.0-beta.2",
54+
"@heroui/react": "2.8.7",
5555
"@mjackson/multipart-parser": "^0.8.2",
56-
"@tailwindcss/vite": "^4.1.4",
57-
"@types/bcrypt": "^5.0.2",
58-
"@types/react": "^19.1.2",
59-
"@types/react-dom": "^19.1.2",
60-
"bcrypt-ts": "^7.0.0",
61-
"chardet": "^2.1.0",
62-
"framer-motion": "^12.7.4",
56+
"@tailwindcss/vite": "^4.1.18",
57+
"@types/bcrypt": "^6.0.0",
58+
"@types/react": "^19.2.7",
59+
"@types/react-dom": "^19.2.3",
60+
"bcrypt-ts": "^8.0.0",
61+
"chardet": "^2.1.1",
62+
"framer-motion": "^12.23.26",
6363
"highlight.js": "^11.11.1",
6464
"mdast-util-to-string": "^4.0.0",
65-
"mime": "^4.0.7",
66-
"react": "^19.1.0",
67-
"react-dom": "^19.1.0",
65+
"mime": "^4.1.0",
66+
"react": "^19.2.3",
67+
"react-dom": "^19.2.3",
6868
"rehype-stringify": "^10.0.1",
6969
"remark-gfm": "^4.0.1",
7070
"remark-parse": "^11.0.0",
7171
"remark-rehype": "^11.1.2",
72-
"tailwindcss": "^4.1.4",
72+
"tailwindcss": "^4.1.18",
7373
"unified": "^11.0.5"
7474
},
7575
"resolutions": {

vitest.config.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,42 @@
11
import { defineConfig } from "vitest/config"
2+
import { defineWorkersProject } from "@cloudflare/vitest-pool-workers/config"
23

34
export default defineConfig({
45
test: {
56
coverage: {
67
provider: "istanbul", // v8 is not supported due for cf workers
78
reporter: ["text", "json-summary", "html", "json"],
89
},
10+
projects: [
11+
defineWorkersProject({
12+
test: {
13+
name: "Workers",
14+
include: ["worker/test/**/*.spec.ts"],
15+
coverage: {
16+
provider: "istanbul", // v8 is not supported due for cf workers
17+
reporter: ["text", "json-summary", "html", "json"],
18+
},
19+
poolOptions: {
20+
workers: {
21+
wrangler: {
22+
configPath: "./wrangler.toml",
23+
},
24+
},
25+
},
26+
},
27+
}),
28+
{
29+
extends: "frontend/vite.config.js",
30+
test: {
31+
include: ["frontend/test/**/*.spec.{ts,tsx}"],
32+
name: "Frontend",
33+
environment: "jsdom",
34+
coverage: {
35+
provider: "istanbul",
36+
reporter: ["text", "json-summary", "html", "json"],
37+
},
38+
},
39+
},
40+
],
941
},
1042
})

vitest.workspace.ts

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)