Skip to content

Commit

Permalink
chore(deps-dev): udpate dependency (naver#3892)
Browse files Browse the repository at this point in the history
- update dependencies
- update vitest sass deprecation warning msg

Co-authored-by: netil <[email protected]>
  • Loading branch information
netil and netil authored Oct 8, 2024
1 parent 87048e9 commit aa6f8ff
Show file tree
Hide file tree
Showing 3 changed files with 333 additions and 256 deletions.
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"@types/d3-selection": "^3.0.10",
"@types/d3-transition": "^3.0.8",
"@types/d3-selection": "^3.0.11",
"@types/d3-transition": "^3.0.9",
"d3-axis": "^3.0.0",
"d3-brush": "^3.0.0",
"d3-drag": "^3.0.0",
Expand All @@ -104,7 +104,7 @@
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.11.1",
"@eslint/js": "^9.12.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.0",
Expand All @@ -118,9 +118,9 @@
"@testing-library/react": "^16.0.1",
"@types/d3": "^7.4.3",
"@types/sinon": "^17.0.3",
"@vitest/browser": "^2.1.1",
"@vitest/coverage-istanbul": "^2.1.1",
"@vitest/ui": "^2.1.1",
"@vitest/browser": "^2.1.2",
"@vitest/coverage-istanbul": "^2.1.2",
"@vitest/ui": "^2.1.2",
"better-docs": "^2.7.3",
"clean-webpack-plugin": "^4.0.0",
"cloc": "2.2.0-cloc",
Expand All @@ -135,16 +135,16 @@
"docdash": "^2.0.2",
"dprint": "^0.47.2",
"esbuild-loader": "^4.2.2",
"eslint": "^9.11.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsdoc": "^50.3.0",
"eslint": "^9.12.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.3.1",
"husky": "^9.1.6",
"jsdoc": "^4.0.3",
"lint-staged": "^15.2.10",
"mini-css-extract-plugin": "^2.9.1",
"playwright": "^1.47.2",
"regenerator-runtime": "^0.14.1",
"rollup": "^4.22.5",
"rollup": "^4.24.0",
"rollup-plugin-delete": "^2.1.0",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
Expand All @@ -155,8 +155,8 @@
"style-loader": "^4.0.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vitest": "^2.1.1",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-clean": "^1.2.5",
Expand Down
11 changes: 11 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@ import {resolve} from "node:path";
import {defineConfig} from "vitest/config";

export default defineConfig({
optimizeDeps: {
include: ["@vitest/coverage-istanbul"]
},
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
silenceDeprecations: ["legacy-js-api"]
}
}
},
test: {
testTimeout: 3_000,
hookTimeout: 5_000,
Expand Down
Loading

0 comments on commit aa6f8ff

Please sign in to comment.