Skip to content

Commit

Permalink
Merge pull request #151 from oddbird/auto-dependency-upgrades
Browse files Browse the repository at this point in the history
Automated dependency upgrades
  • Loading branch information
jgerigmeyer authored Dec 11, 2023
2 parents 677b23a + 38fc502 commit 486e84c
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 114 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.bracketPairColorization.enabled": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
Expand Down Expand Up @@ -40,7 +40,7 @@
"[scss]": {
"editor.rulers": [80],
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
"source.fixAll.stylelint": "explicit"
}
},
"files.exclude": {
Expand Down
21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.1.1",
"@sveltejs/kit": "^1.27.6",
"@sveltejs/kit": "^1.28.0",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/svelte": "^4.0.5",
"@types/jest": "^29.5.10",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitest/coverage-v8": "^0.34.6",
"chokidar-cli": "^3.0.0",
"eslint": "^8.55.0",
Expand All @@ -65,7 +65,7 @@
"mockdate": "^3.0.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"sass": "^1.69.5",
"sass-true": "^7.0.0",
Expand All @@ -75,17 +75,20 @@
"stylelint-config-standard-scss": "^11.1.0",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"vite": "^5.0.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^4.5.1",
"vitest": "^0.34.6"
},
"resolutions": {
"vite": "<5"
},
"yarn-upgrade-all": {
"ignore": [
"@types/node"
"@types/node",
"@vitest/coverage-v8",
"vite",
"vitest"
]
},
"packageManager": "[email protected]"
Expand Down
Loading

0 comments on commit 486e84c

Please sign in to comment.