Skip to content

Commit

Permalink
chore: pin eslint version to 8.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Uninen committed Jun 20, 2024
1 parent bb1d8f1 commit 770f5f5
Show file tree
Hide file tree
Showing 5 changed files with 972 additions and 861 deletions.
21 changes: 0 additions & 21 deletions .github/renovate.json

This file was deleted.

25 changes: 25 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
extends: ['config:base', 'group:all', 'schedule:weekly', ':widenPeerDependencies'],
enabledManagers: ['npm', 'github-actions'],
packageRules: [
{
updateTypes: ['patch'],
enabled: false,
},
{
matchManagers: ['npm'],
automerge: true,
stabilityDays: 2,
// Eslint v9 changes the configuration format and most packages are
// not compatible with it yet.
// See https://github.com/vuejs/eslint-config-prettier/issues/19
ignoreDeps: ['eslint'],
},
{
matchPackagePatterns: ['github-actions'],
automerge: true,
},
],
timezone: 'Europe/Helsinki',
dependencyDashboard: true,
}
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 5.4.0 (2024-06-20)

- Chore: pin Eslint version temporarily to 8.x
- Chore: bump deps

## 5.3.1 (2024-06-04)

- Chore: bump deps
Expand Down
41 changes: 23 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-ts-tailwind-starter",
"version": "5.3.0",
"version": "5.4.0",
"type": "module",
"scripts": {
"dev": "cross-env DEBUG=0 vite",
Expand All @@ -17,14 +17,14 @@
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"@unhead/vue": "1.9.12",
"@unhead/vue": "1.9.14",
"pinia": "2.1.7",
"vue": "3.4.27",
"vue-router": "4.3.2"
"vue": "3.4.29",
"vue-router": "4.3.3"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "1.8.0",
"@iconify/json": "2.2.216",
"@egoist/tailwindcss-icons": "1.8.1",
"@iconify/json": "2.2.220",
"@iconify/types": "2.0.0",
"@pinia/testing": "0.1.3",
"@playwright/test": "1.44.1",
Expand All @@ -36,9 +36,9 @@
"@tsconfig/node20": "20.1.4",
"@types/jsdom": "21.1.7",
"@types/lodash-es": "4.17.12",
"@types/node": "20.14.1",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"@types/node": "20.14.6",
"@typescript-eslint/eslint-plugin": "7.13.1",
"@typescript-eslint/parser": "7.13.1",
"@vitejs/plugin-vue": "5.0.5",
"@vitest/coverage-v8": "1.6.0",
"@vue/eslint-config-prettier": "9.0.0",
Expand All @@ -47,30 +47,35 @@
"@vue/tsconfig": "0.5.1",
"autoprefixer": "10.4.19",
"cross-env": "7.0.3",
"cssnano": "7.0.1",
"eslint": "8.57.0",
"cssnano": "7.0.3",
"eslint": "~8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-n": "17.9.0",
"eslint-plugin-playwright": "1.6.2",
"eslint-plugin-promise": "6.2.0",
"eslint-plugin-security": "3.0.0",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-vue": "9.26.0",
"jsdom": "24.1.0",
"lodash-es": "4.17.21",
"npm-run-all2": "6.2.0",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
"postcss-nesting": "12.1.5",
"prettier": "3.3.0",
"tailwindcss": "3.4.3",
"prettier": "3.3.2",
"tailwindcss": "3.4.4",
"typescript": "5.4.5",
"unplugin-auto-import": "0.17.6",
"unplugin-vue-components": "0.27.0",
"vite": "5.2.12",
"vite-plugin-vue-devtools": "7.2.1",
"vite": "5.3.1",
"vite-plugin-vue-devtools": "7.3.2",
"vitest": "1.6.0",
"vue-tsc": "2.0.19",
"vue-tsc": "2.0.21",
"wait-on": "7.2.0"
},
"pnpm": {
"overrides": {
"eslint": "8.x"
}
}
}
Loading

0 comments on commit 770f5f5

Please sign in to comment.