Skip to content

Commit f26226c

Browse files
committed
Update dependencies and ignore pnpm-lock.yaml in formatting checks
1 parent 69cc0e2 commit f26226c

File tree

4 files changed

+65
-299
lines changed

4 files changed

+65
-299
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ coverage
1414
*.local
1515
yarn.lock
1616
package-lock.json
17+
pnpm-lock.yaml
1718

1819
# Editor directories and files
1920
.vscode/*

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"dev": "vite",
3232
"format": "pnpm prettier --write .",
3333
"format:check": "pnpm prettier --check .",
34-
"lint": "eslint --config config/eslint/eslint.json . --ignore-path .gitignore",
34+
"lint": "eslint --ignore-pattern .gitignore --config config/eslint/eslint.json .",
3535
"lint:fix": "pnpm lint --fix",
3636
"prettier": "prettier --config config/prettier/prettier.json --ignore-path .gitignore",
3737
"preview": "vite preview --config config/vite/vite.demo.config.ts",
@@ -89,29 +89,29 @@
8989
},
9090
"devDependencies": {
9191
"@testing-library/jest-dom": "^6.4.2",
92-
"@testing-library/react": "^14.2.1",
92+
"@testing-library/react": "^14.2.2",
9393
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
94-
"@types/node": "^20.11.28",
94+
"@types/node": "^20.12.5",
9595
"@types/p5": "^1.7.6",
96-
"@types/react": "^18.2.66",
97-
"@types/react-dom": "^18.2.22",
98-
"@typescript-eslint/eslint-plugin": "^7.2.0",
96+
"@types/react": "^18.2.74",
97+
"@types/react-dom": "^18.2.24",
98+
"@typescript-eslint/eslint-plugin": "^7.5.0",
9999
"@vitejs/plugin-react": "^4.2.1",
100100
"@vitest/coverage-v8": "^1.4.0",
101-
"canvas": "^2.11.2",
102101
"eslint": "^8.57.0",
103102
"eslint-plugin-react": "^7.34.1",
104103
"eslint-plugin-react-hooks": "^4.6.0",
105104
"gh-pages": "^6.1.1",
106105
"jsdom": "^24.0.0",
107106
"prettier": "^3.2.5",
108107
"rimraf": "^5.0.5",
109-
"typescript": "^5.4.2",
110-
"vite": "^5.1.6",
111-
"vitest": "^1.4.0"
108+
"typescript": "^5.4.4",
109+
"vite": "^5.2.8",
110+
"vitest": "^1.4.0",
111+
"vitest-canvas-mock": "^0.3.3"
112112
},
113113
"dependencies": {
114-
"microdiff": "^1.3.2",
114+
"microdiff": "^1.4.0",
115115
"p5": ">=1.4.1 <2.0.0"
116116
}
117117
}

0 commit comments

Comments
 (0)