Skip to content

Commit

Permalink
Upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jgerigmeyer committed Sep 6, 2024
1 parent f3d0601 commit 1d469cc
Show file tree
Hide file tree
Showing 4 changed files with 482 additions and 602 deletions.
5 changes: 4 additions & 1 deletion .svelte-kit/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@
"exclude": [
"../node_modules/**",
"../src/service-worker.js",
"../src/service-worker/**/*.js",
"../src/service-worker.ts",
"../src/service-worker.d.ts"
"../src/service-worker/**/*.ts",
"../src/service-worker.d.ts",
"../src/service-worker/**/*.d.ts"
]
}
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"lint:sass": "yarn lint:sass:ci --fix",
"lint:ci": "run-p prettier:ci sync check lint:js:ci lint:sass:ci tsc tsc:tests",
"lint:sass:ci": "stylelint '**/*.scss'",
"docs:json": "npx sass -p node src/sass/json.scss static/built/json.css",
"docs:sass": "npx sass -p node src/sass/app.scss static/built/app.css",
"docs:json": "sass -p node src/sass/json.scss static/built/json.css",
"docs:sass": "sass -p node src/sass/app.scss static/built/app.css",
"docs:compile": "sassdoc 'src/sass/**/*.scss'",
"docs": "run-s docs:sass docs:json docs:compile",
"watch:docs": "chokidar \"src/sass/**/*.scss\" \"./.sassdocrc\" \"./README.md\" -c \"yarn docs\"",
Expand All @@ -41,44 +41,44 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.2.4",
"@sveltejs/kit": "^2.5.22",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@testing-library/jest-dom": "^6.4.8",
"@sveltejs/kit": "^2.5.26",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/svelte": "^5.2.1",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/coverage-v8": "^2.0.5",
"chokidar-cli": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-svelte": "^2.43.0",
"jsdom": "^25.0.0",
"lodash": "^4.17.21",
"mocha": "^10.7.3",
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.41",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"sass-embedded": "^1.77.8",
"sass-embedded": "^1.78.0",
"sass-true": "^8.0.0",
"sassdoc": "^2.7.4",
"sassdoc-theme-herman": "^6.0.1",
"stylelint": "^16.8.1",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^13.1.0",
"svelte": "^4.2.19",
"svelte-check": "^3.8.5",
"svelte-check": "^4.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite": "^5.4.0",
"vite": "^5.4.3",
"vitest": "^2.0.5"
},
"packageManager": "[email protected].0"
"packageManager": "[email protected].1"
}
2 changes: 1 addition & 1 deletion test/js/@types/vitest.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { TestingLibraryMatchers } from '@testing-library/jest-dom/matchers';

declare global {
namespace jest {
// eslint-disable-next-line @typescript-eslint/no-empty-interface, @typescript-eslint/no-unused-vars, @typescript-eslint/ban-types
// eslint-disable-next-line @typescript-eslint/no-empty-object-type, @typescript-eslint/no-unused-vars
interface Matchers<R = void, T = {}>
extends TestingLibraryMatchers<typeof expect.stringContaining, R> {}
}
Expand Down
Loading

0 comments on commit 1d469cc

Please sign in to comment.