Skip to content

Commit a2c5ac5

Browse files
authored
Merge pull request #21 from ZaikoXander/chore/update-dependencies
chore: Update dependencies
2 parents f6fed7e + d321e54 commit a2c5ac5

File tree

4 files changed

+32
-31
lines changed

4 files changed

+32
-31
lines changed

.github/workflows/playwright.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ jobs:
1313
- uses: actions/setup-node@v4
1414
with:
1515
node-version: 20
16+
- uses: oven-sh/setup-bun@v2
1617
- name: Install dependencies
17-
run: npm i -g bun && bun i
18+
run: bun i
1819
- name: Install Playwright Browsers
1920
run: bun run playwright install --with-deps
2021
- name: Run Playwright tests

bun.lockb

5.89 KB
Binary file not shown.

package.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -15,40 +15,40 @@
1515
"pw:cg": "playwright codegen"
1616
},
1717
"dependencies": {
18-
"@vercel/analytics": "^1.1.1",
19-
"@vercel/speed-insights": "^1.0.3",
20-
"@vidstack/react": "next",
18+
"@vercel/analytics": "^1.3.1",
19+
"@vercel/speed-insights": "^1.0.12",
20+
"@vidstack/react": "1.9.8",
2121
"classnames": "^2.5.1",
22-
"i18next": "^23.7.16",
23-
"i18next-browser-languagedetector": "^7.2.0",
24-
"jotai": "^2.6.4",
25-
"jotai-effect": "^0.5.0",
26-
"react": "^18.2.0",
27-
"react-dom": "^18.2.0",
28-
"react-i18next": "^14.0.0",
29-
"react-icons": "^4.12.0"
22+
"i18next": "^23.11.5",
23+
"i18next-browser-languagedetector": "^7.2.1",
24+
"jotai": "^2.8.3",
25+
"jotai-effect": "^1.0.0",
26+
"react": "^18.3.1",
27+
"react-dom": "^18.3.1",
28+
"react-i18next": "^14.1.2",
29+
"react-icons": "^5.2.1"
3030
},
3131
"devDependencies": {
3232
"@playwright/test": "latest",
33-
"@swc-jotai/react-refresh": "^0.1.0",
34-
"@types/node": "^20.11.5",
35-
"@types/react": "^18.2.43",
36-
"@types/react-dom": "^18.2.17",
37-
"@typescript-eslint/eslint-plugin": "^6.14.0",
38-
"@typescript-eslint/parser": "^6.14.0",
39-
"@vitejs/plugin-react-swc": "^3.5.0",
40-
"autoprefixer": "^10.4.16",
41-
"eslint": "^8.55.0",
33+
"@swc-jotai/react-refresh": "^0.1.1",
34+
"@types/node": "^20.14.8",
35+
"@types/react": "^18.3.3",
36+
"@types/react-dom": "^18.3.0",
37+
"@typescript-eslint/eslint-plugin": "^6.21.0",
38+
"@typescript-eslint/parser": "^6.21.0",
39+
"@vitejs/plugin-react-swc": "^3.7.0",
40+
"autoprefixer": "^10.4.19",
41+
"eslint": "^8.57.0",
4242
"eslint-config-prettier": "^9.1.0",
4343
"eslint-plugin-prettier": "^5.1.3",
44-
"eslint-plugin-react": "^7.33.2",
45-
"eslint-plugin-react-hooks": "^4.6.0",
46-
"eslint-plugin-react-refresh": "^0.4.5",
47-
"postcss": "^8.4.32",
48-
"prettier": "^3.2.4",
49-
"prettier-plugin-tailwindcss": "^0.5.11",
50-
"tailwindcss": "^3.4.0",
51-
"typescript": "^5.2.2",
52-
"vite": "^5.0.8"
44+
"eslint-plugin-react": "^7.34.3",
45+
"eslint-plugin-react-hooks": "^4.6.2",
46+
"eslint-plugin-react-refresh": "^0.4.7",
47+
"postcss": "^8.4.38",
48+
"prettier": "^3.3.2",
49+
"prettier-plugin-tailwindcss": "^0.5.14",
50+
"tailwindcss": "^3.4.4",
51+
"typescript": "^5.5.2",
52+
"vite": "^5.3.1"
5353
}
5454
}

playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default defineConfig({
1616
/* Fail the build on CI if you accidentally left test.only in the source code. */
1717
forbidOnly: !!process.env.CI,
1818
/* Retry on CI only */
19-
retries: process.env.CI ? 2 : 0,
19+
retries: process.env.CI ? 3 : 0,
2020
/* Opt out of parallel tests on CI. */
2121
workers: process.env.CI ? 1 : undefined,
2222
/* Reporter to use. See https://playwright.dev/docs/test-reporters */

0 commit comments

Comments
 (0)