From 82af8cdfdb635305ccd17880aae1c0610094723d Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Mon, 14 Oct 2024 17:15:44 +0800 Subject: [PATCH] chore: update dependencies --- examples/allow-js/package.json | 4 +- examples/minimal/package.json | 4 +- examples/type-checked/package.json | 6 +- examples/with-cypress/package.json | 6 +- examples/with-jsx-in-vue/package.json | 4 +- examples/with-jsx/package.json | 4 +- examples/with-nightwatch/package.json | 4 +- examples/with-playwright/package.json | 6 +- examples/with-prettier/package.json | 4 +- examples/with-tsx-in-vue/package.json | 4 +- examples/with-tsx/package.json | 4 +- examples/with-vitest/package.json | 4 +- package.json | 4 +- pnpm-lock.yaml | 456 +++++++++---------- test/fixtures/with-older-espree/package.json | 6 +- 15 files changed, 258 insertions(+), 262 deletions(-) diff --git a/examples/allow-js/package.json b/examples/allow-js/package.json index 4454931..efb23d2 100644 --- a/examples/allow-js/package.json +++ b/examples/allow-js/package.json @@ -12,7 +12,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -21,7 +21,7 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8", diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 1601bad..c409101 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -12,7 +12,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -21,7 +21,7 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8", diff --git a/examples/type-checked/package.json b/examples/type-checked/package.json index 652981f..06e52ee 100644 --- a/examples/type-checked/package.json +++ b/examples/type-checked/package.json @@ -17,7 +17,7 @@ }, "dependencies": { "pinia": "^2.2.4", - "vue": "^3.5.11", + "vue": "^3.5.12", "vue-router": "^4.4.5" }, "devDependencies": { @@ -33,8 +33,8 @@ "@vue/tsconfig": "^0.5.1", "cypress": "^13.15.0", "eslint": "^9.12.0", - "eslint-plugin-cypress": "^3.5.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-cypress": "^3.6.0", + "eslint-plugin-vue": "^9.29.0", "jsdom": "^25.0.1", "npm-run-all2": "^6.2.3", "prettier": "^3.3.3", diff --git a/examples/with-cypress/package.json b/examples/with-cypress/package.json index 1ae4064..4b44fb8 100644 --- a/examples/with-cypress/package.json +++ b/examples/with-cypress/package.json @@ -16,7 +16,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -26,8 +26,8 @@ "@vue/tsconfig": "^0.5.1", "cypress": "^13.15.0", "eslint": "^9.12.0", - "eslint-plugin-cypress": "^3.5.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-cypress": "^3.6.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "start-server-and-test": "^2.0.8", "typescript": "~5.5.4", diff --git a/examples/with-jsx-in-vue/package.json b/examples/with-jsx-in-vue/package.json index 5f9007c..9a802e2 100644 --- a/examples/with-jsx-in-vue/package.json +++ b/examples/with-jsx-in-vue/package.json @@ -12,7 +12,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -22,7 +22,7 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8", diff --git a/examples/with-jsx/package.json b/examples/with-jsx/package.json index b6f8d24..693df49 100644 --- a/examples/with-jsx/package.json +++ b/examples/with-jsx/package.json @@ -12,7 +12,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -22,7 +22,7 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8", diff --git a/examples/with-nightwatch/package.json b/examples/with-nightwatch/package.json index b3583a9..ad761e9 100644 --- a/examples/with-nightwatch/package.json +++ b/examples/with-nightwatch/package.json @@ -14,7 +14,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@nightwatch/vue": "^3.1.2", @@ -26,7 +26,7 @@ "@vue/tsconfig": "^0.5.1", "chromedriver": "^129.0.4", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "geckodriver": "^4.5.1", "nightwatch": "^3.8.0", "npm-run-all2": "^6.2.3", diff --git a/examples/with-playwright/package.json b/examples/with-playwright/package.json index eeda1a3..a1a2aad 100644 --- a/examples/with-playwright/package.json +++ b/examples/with-playwright/package.json @@ -13,7 +13,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@playwright/test": "^1.48.0", @@ -23,8 +23,8 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-playwright": "^1.6.2", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-playwright": "^1.7.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8", diff --git a/examples/with-prettier/package.json b/examples/with-prettier/package.json index 4fbe665..d0ca2ac 100644 --- a/examples/with-prettier/package.json +++ b/examples/with-prettier/package.json @@ -13,7 +13,7 @@ "format": "prettier --write src/" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -23,7 +23,7 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "prettier": "^3.3.3", "typescript": "~5.5.4", diff --git a/examples/with-tsx-in-vue/package.json b/examples/with-tsx-in-vue/package.json index 68d8ce1..b8ee681 100644 --- a/examples/with-tsx-in-vue/package.json +++ b/examples/with-tsx-in-vue/package.json @@ -12,7 +12,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -22,7 +22,7 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8", diff --git a/examples/with-tsx/package.json b/examples/with-tsx/package.json index 13e1007..aa0a3e1 100644 --- a/examples/with-tsx/package.json +++ b/examples/with-tsx/package.json @@ -12,7 +12,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -22,7 +22,7 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8", diff --git a/examples/with-vitest/package.json b/examples/with-vitest/package.json index dee4cae..23b6dd2 100644 --- a/examples/with-vitest/package.json +++ b/examples/with-vitest/package.json @@ -13,7 +13,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -25,7 +25,7 @@ "@vue/test-utils": "^2.4.6", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "jsdom": "^25.0.1", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", diff --git a/package.json b/package.json index 3fd727a..6d1026e 100644 --- a/package.json +++ b/package.json @@ -49,14 +49,14 @@ "@tsconfig/node20": "^20.1.4", "@types/node": "^22.7.5", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", + "eslint-plugin-vue": "^9.29.0", "execa": "^9.4.0", "pkgroll": "^2.5.0", "prettier": "^3.3.3", "tsx": "^4.19.1", "typescript": "~5.5.4", "vitest": "^2.1.2", - "vue": "^3.5.11" + "vue": "^3.5.12" }, "peerDependencies": { "eslint": "^9.10.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c695078..22f9e28 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,8 +31,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) execa: specifier: ^9.4.0 version: 9.4.0 @@ -52,14 +52,14 @@ importers: specifier: ^2.1.2 version: 2.1.2(@types/node@22.7.5)(jsdom@25.0.1) vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) examples/allow-js: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -69,7 +69,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -80,8 +80,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -98,8 +98,8 @@ importers: examples/minimal: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -109,7 +109,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -120,8 +120,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -139,13 +139,13 @@ importers: dependencies: pinia: specifier: ^2.2.4 - version: 2.2.4(typescript@5.5.4)(vue@3.5.11(typescript@5.5.4)) + version: 2.2.4(typescript@5.5.4)(vue@3.5.12(typescript@5.5.4)) vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) vue-router: specifier: ^4.4.5 - version: 4.4.5(vue@3.5.11(typescript@5.5.4)) + version: 4.4.5(vue@3.5.12(typescript@5.5.4)) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -158,10 +158,10 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.1 - version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vitest/eslint-plugin': specifier: 1.1.7 version: 1.1.7(@typescript-eslint/utils@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4)(vitest@2.1.2(@types/node@20.16.11)(jsdom@25.0.1)) @@ -184,11 +184,11 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-cypress: - specifier: ^3.5.0 - version: 3.5.0(eslint@9.12.0) + specifier: ^3.6.0 + version: 3.6.0(eslint@9.12.0) eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) jsdom: specifier: ^25.0.1 version: 25.0.1 @@ -209,7 +209,7 @@ importers: version: 5.4.8(@types/node@20.16.11) vite-plugin-vue-devtools: specifier: ^7.4.6 - version: 7.4.6(rollup@4.24.0)(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 7.4.6(rollup@4.24.0)(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) vitest: specifier: ^2.1.2 version: 2.1.2(@types/node@20.16.11)(jsdom@25.0.1) @@ -220,8 +220,8 @@ importers: examples/with-cypress: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -231,7 +231,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -245,11 +245,11 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-cypress: - specifier: ^3.5.0 - version: 3.5.0(eslint@9.12.0) + specifier: ^3.6.0 + version: 3.6.0(eslint@9.12.0) eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -269,8 +269,8 @@ importers: examples/with-jsx: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -280,10 +280,10 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.1 - version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -294,8 +294,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -312,8 +312,8 @@ importers: examples/with-jsx-in-vue: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -323,10 +323,10 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.1 - version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -337,8 +337,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -355,12 +355,12 @@ importers: examples/with-nightwatch: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@nightwatch/vue': specifier: ^3.1.2 - version: 3.1.2(@types/node@20.16.11)(vue@3.5.11(typescript@5.5.4)) + version: 3.1.2(@types/node@20.16.11)(vue@3.5.12(typescript@5.5.4)) '@tsconfig/node20': specifier: ^20.1.4 version: 20.1.4 @@ -369,7 +369,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -386,8 +386,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) geckodriver: specifier: ^4.5.1 version: 4.5.1 @@ -416,8 +416,8 @@ importers: examples/with-playwright: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@playwright/test': specifier: ^1.48.0 @@ -430,7 +430,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -441,11 +441,11 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-playwright: - specifier: ^1.6.2 - version: 1.6.2(eslint@9.12.0) + specifier: ^1.7.0 + version: 1.7.0(eslint@9.12.0) eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -462,8 +462,8 @@ importers: examples/with-prettier: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -473,7 +473,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-prettier': specifier: ^10.0.0 version: 10.0.0(eslint@9.12.0)(prettier@3.3.3) @@ -487,8 +487,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -508,8 +508,8 @@ importers: examples/with-tsx: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -519,10 +519,10 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.1 - version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -533,8 +533,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -551,8 +551,8 @@ importers: examples/with-tsx-in-vue: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -562,10 +562,10 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vitejs/plugin-vue-jsx': specifier: ^4.0.1 - version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../.. @@ -576,8 +576,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) npm-run-all2: specifier: ^6.2.3 version: 6.2.3 @@ -594,8 +594,8 @@ importers: examples/with-vitest: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -608,7 +608,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vitest/eslint-plugin': specifier: ^1.1.7 version: 1.1.7(@typescript-eslint/utils@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4)(vitest@1.6.0(@types/node@20.16.11)(jsdom@25.0.1)) @@ -625,8 +625,8 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) jsdom: specifier: ^25.0.1 version: 25.0.1 @@ -649,8 +649,8 @@ importers: test/fixtures/with-older-espree: dependencies: vue: - specifier: ^3.5.11 - version: 3.5.11(typescript@5.5.4) + specifier: ^3.5.12 + version: 3.5.12(typescript@5.5.4) devDependencies: '@tsconfig/node20': specifier: ^20.1.4 @@ -660,7 +660,7 @@ importers: version: 20.16.11 '@vitejs/plugin-vue': specifier: ^5.1.4 - version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + version: 5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/eslint-config-typescript': specifier: workspace:* version: link:../../.. @@ -671,10 +671,10 @@ importers: specifier: ^9.12.0 version: 9.12.0 eslint-plugin-vue: - specifier: ^9.28.0 - version: 9.28.0(eslint@9.12.0) + specifier: ^9.29.0 + version: 9.29.0(eslint@9.12.0) espree: - specifier: '9' + specifier: ^9.6.1 version: 9.6.1 npm-run-all2: specifier: ^6.2.3 @@ -1925,17 +1925,17 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 - '@vue/compiler-core@3.5.11': - resolution: {integrity: sha512-PwAdxs7/9Hc3ieBO12tXzmTD+Ln4qhT/56S+8DvrrZ4kLDn4Z/AMUr8tXJD0axiJBS0RKIoNaR0yMuQB9v9Udg==} + '@vue/compiler-core@3.5.12': + resolution: {integrity: sha512-ISyBTRMmMYagUxhcpyEH0hpXRd/KqDU4ymofPgl2XAkY9ZhQ+h0ovEZJIiPop13UmR/54oA2cgMDjgroRelaEw==} - '@vue/compiler-dom@3.5.11': - resolution: {integrity: sha512-pyGf8zdbDDRkBrEzf8p7BQlMKNNF5Fk/Cf/fQ6PiUz9at4OaUfyXW0dGJTo2Vl1f5U9jSLCNf0EZJEogLXoeew==} + '@vue/compiler-dom@3.5.12': + resolution: {integrity: sha512-9G6PbJ03uwxLHKQ3P42cMTi85lDRvGLB2rSGOiQqtXELat6uI4n8cNz9yjfVHRPIu+MsK6TE418Giruvgptckg==} - '@vue/compiler-sfc@3.5.11': - resolution: {integrity: sha512-gsbBtT4N9ANXXepprle+X9YLg2htQk1sqH/qGJ/EApl+dgpUBdTv3yP7YlR535uHZY3n6XaR0/bKo0BgwwDniw==} + '@vue/compiler-sfc@3.5.12': + resolution: {integrity: sha512-2k973OGo2JuAa5+ZlekuQJtitI5CgLMOwgl94BzMCsKZCX/xiqzJYzapl4opFogKHqwJk34vfsaKpfEhd1k5nw==} - '@vue/compiler-ssr@3.5.11': - resolution: {integrity: sha512-P4+GPjOuC2aFTk1Z4WANvEhyOykcvEd5bIj2KVNGKGfM745LaXGr++5njpdBTzVz5pZifdlR1kpYSJJpIlSePA==} + '@vue/compiler-ssr@3.5.12': + resolution: {integrity: sha512-eLwc7v6bfGBSM7wZOGPmRavSWzNFF6+PdRhE+VFJhNCgHiF8AM7ccoqcv5kBXA2eWUfigD7byekvf/JsOfKvPA==} '@vue/compiler-vue2@2.7.16': resolution: {integrity: sha512-qYC3Psj9S/mfu9uVi5WvNZIzq+xnXMhOwbTFKKDD7b1lhpnn71jXSFdTQ+WsIEk0ONCd7VV2IMm7ONl6tbQ86A==} @@ -1968,22 +1968,22 @@ packages: typescript: optional: true - '@vue/reactivity@3.5.11': - resolution: {integrity: sha512-Nqo5VZEn8MJWlCce8XoyVqHZbd5P2NH+yuAaFzuNSR96I+y1cnuUiq7xfSG+kyvLSiWmaHTKP1r3OZY4mMD50w==} + '@vue/reactivity@3.5.12': + resolution: {integrity: sha512-UzaN3Da7xnJXdz4Okb/BGbAaomRHc3RdoWqTzlvd9+WBR5m3J39J1fGcHes7U3za0ruYn/iYy/a1euhMEHvTAg==} - '@vue/runtime-core@3.5.11': - resolution: {integrity: sha512-7PsxFGqwfDhfhh0OcDWBG1DaIQIVOLgkwA5q6MtkPiDFjp5gohVnJEahSktwSFLq7R5PtxDKy6WKURVN1UDbzA==} + '@vue/runtime-core@3.5.12': + resolution: {integrity: sha512-hrMUYV6tpocr3TL3Ad8DqxOdpDe4zuQY4HPY3X/VRh+L2myQO8MFXPAMarIOSGNu0bFAjh1yBkMPXZBqCk62Uw==} - '@vue/runtime-dom@3.5.11': - resolution: {integrity: sha512-GNghjecT6IrGf0UhuYmpgaOlN7kxzQBhxWEn08c/SQDxv1yy4IXI1bn81JgEpQ4IXjRxWtPyI8x0/7TF5rPfYQ==} + '@vue/runtime-dom@3.5.12': + resolution: {integrity: sha512-q8VFxR9A2MRfBr6/55Q3umyoN7ya836FzRXajPB6/Vvuv0zOPL+qltd9rIMzG/DbRLAIlREmnLsplEF/kotXKA==} - '@vue/server-renderer@3.5.11': - resolution: {integrity: sha512-cVOwYBxR7Wb1B1FoxYvtjJD8X/9E5nlH4VSkJy2uMA1MzYNdzAAB//l8nrmN9py/4aP+3NjWukf9PZ3TeWULaA==} + '@vue/server-renderer@3.5.12': + resolution: {integrity: sha512-I3QoeDDeEPZm8yR28JtY+rk880Oqmj43hreIBVTicisFTx/Dl7JpG72g/X7YF8hnQD3IFhkky5i2bPonwrTVPg==} peerDependencies: - vue: 3.5.11 + vue: 3.5.12 - '@vue/shared@3.5.11': - resolution: {integrity: sha512-W8GgysJVnFo81FthhzurdRAWP/byq3q2qIw70e0JWblzVhjgOMiC2GyovXrZTFQJnFVryYaKGP3Tc9vYzYm6PQ==} + '@vue/shared@3.5.12': + resolution: {integrity: sha512-L2RPSAwUFbgZH20etwrXyVyCBu9OxRSi8T/38QsvnkJyvq2LufW2lDCOzm7t/U9C1mkhJGWYfCuFBCmIuNivrg==} '@vue/test-utils@2.4.6': resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} @@ -2258,8 +2258,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001667: - resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==} + caniuse-lite@1.0.30001668: + resolution: {integrity: sha512-nWLrdxqCdblixUO+27JtGJJE/txpJlyUy5YN1u53wLZkP0emYCo5zgS6QYft7VUYR42LGgi/S5hdLZTrnyIddw==} caseless@0.12.0: resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} @@ -2623,8 +2623,8 @@ packages: engines: {node: '>=0.10.0'} hasBin: true - electron-to-chromium@1.5.35: - resolution: {integrity: sha512-hOSRInrIDm0Brzp4IHW2F/VM+638qOL2CzE0DgpnGzKW27C95IqqeqgKz/hxHGnvPxvQGpHUGD5qRVC9EZY2+A==} + electron-to-chromium@1.5.36: + resolution: {integrity: sha512-HYTX8tKge/VNp6FGO+f/uVDmUkq+cEfcxYhKf15Akc4M5yxt5YmorwlAitKWjWhWQnKcDRBAQKXkhqqXMqcrjw==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -2828,13 +2828,13 @@ packages: peerDependencies: eslint: '>=7.0.0' - eslint-plugin-cypress@3.5.0: - resolution: {integrity: sha512-JZQ6XnBTNI8h1B9M7wJSFzc48SYbh7VMMKaNTQOFa3BQlnmXPrVc4PKen8R+fpv6VleiPeej6VxloGb42zdRvw==} + eslint-plugin-cypress@3.6.0: + resolution: {integrity: sha512-7IAMcBbTVu5LpWeZRn5a9mQ30y4hKp3AfTz+6nSD/x/7YyLMoBI6X7XjDLYI6zFvuy4Q4QVGl563AGEXGW/aSA==} peerDependencies: eslint: '>=7' - eslint-plugin-playwright@1.6.2: - resolution: {integrity: sha512-mraN4Em3b5jLt01q7qWPyLg0Q5v3KAWfJSlEWwldyUXoa7DSPrBR4k6B6LROLqipsG8ndkwWMdjl1Ffdh15tag==} + eslint-plugin-playwright@1.7.0: + resolution: {integrity: sha512-pDp2jFeWbBmlwDfZ39Ypdlz1+IafmRKvFTnnonX0TbS7hAByy4oh7Y6ioZRKvLGE+djd/e2VbqOo9sxgZSY2ow==} engines: {node: '>=16.6.0'} peerDependencies: eslint: '>=8.40.0' @@ -2857,8 +2857,8 @@ packages: eslint-config-prettier: optional: true - eslint-plugin-vue@9.28.0: - resolution: {integrity: sha512-ShrihdjIhOTxs+MfWun6oJWuk+g/LAhN+CiuOl/jjkG3l0F2AuK5NMTaWqyvBgkFtpYmyks6P4603mLmhNJW8g==} + eslint-plugin-vue@9.29.0: + resolution: {integrity: sha512-hamyjrBhNH6Li6R1h1VF9KHfshJlKgKEg3ARbGTn72CMNDSMhWbgC7NdkRDEh25AFW+4SDATzyNM+3gWuZii8g==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 @@ -3697,8 +3697,8 @@ packages: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} - magic-string@0.30.11: - resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} + magic-string@0.30.12: + resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} @@ -3960,8 +3960,8 @@ packages: resolution: {integrity: sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==} engines: {node: '>=18'} - parse5@7.1.2: - resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + parse5@7.2.0: + resolution: {integrity: sha512-ZkDsAOcxsUMZ4Lz5fVciOehNcJ+Gb8gTzcA4yl3wnc273BAybYWrQ+Ks/OjCjSEpjvQkDSeZbybK9qj2VHHdGA==} path-browserify@1.0.1: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} @@ -4503,11 +4503,11 @@ packages: resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} engines: {node: '>=14.0.0'} - tldts-core@6.1.50: - resolution: {integrity: sha512-na2EcZqmdA2iV9zHV7OHQDxxdciEpxrjbkp+aHmZgnZKHzoElLajP59np5/4+sare9fQBfixgvXKx8ev1d7ytw==} + tldts-core@6.1.51: + resolution: {integrity: sha512-bu9oCYYWC1iRjx+3UnAjqCsfrWNZV1ghNQf49b3w5xE8J/tNShHTzp5syWJfwGH+pxUgTTLUnzHnfuydW7wmbg==} - tldts@6.1.50: - resolution: {integrity: sha512-q9GOap6q3KCsLMdOjXhWU5jVZ8/1dIib898JBRLsN+tBhENpBDcAVQbE0epADOjw11FhQQy9AcbqKGBQPUfTQA==} + tldts@6.1.51: + resolution: {integrity: sha512-33lfQoL0JsDogIbZ8fgRyvv77GnRtwkNE/MOKocwUgPO1WrSfsq7+vQRKxRQZai5zd+zg97Iv9fpFQSzHyWdLA==} hasBin: true tmp@0.2.3: @@ -4840,8 +4840,8 @@ packages: peerDependencies: typescript: '>=5.0.0' - vue@3.5.11: - resolution: {integrity: sha512-/8Wurrd9J3lb72FTQS7gRMNQD4nztTtKPmuDuPuhqXmmpD6+skVjAeahNpVzsuky6Sy9gy7wn8UadqPtt9SQIg==} + vue@3.5.12: + resolution: {integrity: sha512-CLVZtXtn2ItBIi/zHZ0Sg1Xkb7+PU32bJJ8Bmy7ts3jxXTcbfsEfBivFYYWz1Hur+lalqGAh65Coin0r+HRUfg==} peerDependencies: typescript: '*' peerDependenciesMeta: @@ -5475,7 +5475,7 @@ snapshots: '@eslint/config-array@0.18.0': dependencies: '@eslint/object-schema': 2.1.4 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -5485,7 +5485,7 @@ snapshots: '@eslint/eslintrc@3.1.0': dependencies: ajv: 6.12.6 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) espree: 10.2.0 globals: 14.0.0 ignore: 5.3.2 @@ -5648,10 +5648,10 @@ snapshots: dependencies: archiver: 5.3.2 - '@nightwatch/vue@3.1.2(@types/node@20.16.11)(vue@3.5.11(typescript@5.5.4))': + '@nightwatch/vue@3.1.2(@types/node@20.16.11)(vue@3.5.12(typescript@5.5.4))': dependencies: '@nightwatch/esbuild-utils': 0.2.1 - '@vitejs/plugin-vue': 4.6.2(vite@4.5.5(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + '@vitejs/plugin-vue': 4.6.2(vite@4.5.5(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) get-port: 5.1.1 vite: 4.5.5(@types/node@20.16.11) vite-plugin-nightwatch: 0.4.6 @@ -5706,7 +5706,7 @@ snapshots: estree-walker: 2.0.2 glob: 10.4.5 is-reference: 1.2.1 - magic-string: 0.30.11 + magic-string: 0.30.12 optionalDependencies: rollup: 4.24.0 @@ -5714,7 +5714,7 @@ snapshots: dependencies: '@rollup/pluginutils': 5.1.2(rollup@4.24.0) estree-walker: 2.0.2 - magic-string: 0.30.11 + magic-string: 0.30.12 optionalDependencies: rollup: 4.24.0 @@ -5737,7 +5737,7 @@ snapshots: '@rollup/plugin-replace@5.0.7(rollup@4.24.0)': dependencies: '@rollup/pluginutils': 5.1.2(rollup@4.24.0) - magic-string: 0.30.11 + magic-string: 0.30.12 optionalDependencies: rollup: 4.24.0 @@ -5849,16 +5849,16 @@ snapshots: '@types/jsdom@21.1.7': dependencies: - '@types/node': 22.7.5 + '@types/node': 20.16.11 '@types/tough-cookie': 4.0.5 - parse5: 7.1.2 + parse5: 7.2.0 '@types/json-schema@7.0.15': {} '@types/nightwatch@2.3.32': dependencies: '@types/chai': 5.0.0 - '@types/node': 22.7.5 + '@types/node': 20.16.11 '@types/selenium-webdriver': 4.1.26 devtools-protocol: 0.0.1025565 @@ -5874,7 +5874,7 @@ snapshots: '@types/selenium-webdriver@4.1.26': dependencies: - '@types/node': 22.7.5 + '@types/node': 20.16.11 '@types/ws': 8.5.12 '@types/sinonjs__fake-timers@8.1.1': {} @@ -5885,11 +5885,11 @@ snapshots: '@types/ws@8.5.12': dependencies: - '@types/node': 22.7.5 + '@types/node': 20.16.11 '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.7.5 + '@types/node': 20.16.11 optional: true '@typescript-eslint/eslint-plugin@8.8.1(@typescript-eslint/parser@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4)': @@ -5916,7 +5916,7 @@ snapshots: '@typescript-eslint/types': 8.8.1 '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.4) '@typescript-eslint/visitor-keys': 8.8.1 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) eslint: 9.12.0 optionalDependencies: typescript: 5.5.4 @@ -5932,7 +5932,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 8.8.1(typescript@5.5.4) '@typescript-eslint/utils': 8.8.1(eslint@9.12.0)(typescript@5.5.4) - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) ts-api-utils: 1.3.0(typescript@5.5.4) optionalDependencies: typescript: 5.5.4 @@ -5946,7 +5946,7 @@ snapshots: dependencies: '@typescript-eslint/types': 8.8.1 '@typescript-eslint/visitor-keys': 8.8.1 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) fast-glob: 3.3.2 is-glob: 4.0.3 minimatch: 9.0.5 @@ -5973,25 +5973,25 @@ snapshots: '@typescript-eslint/types': 8.8.1 eslint-visitor-keys: 3.4.3 - '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4))': + '@vitejs/plugin-vue-jsx@4.0.1(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4))': dependencies: '@babel/core': 7.25.8 '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.8) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.8) vite: 5.4.8(@types/node@20.16.11) - vue: 3.5.11(typescript@5.5.4) + vue: 3.5.12(typescript@5.5.4) transitivePeerDependencies: - supports-color - '@vitejs/plugin-vue@4.6.2(vite@4.5.5(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4))': + '@vitejs/plugin-vue@4.6.2(vite@4.5.5(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4))': dependencies: vite: 4.5.5(@types/node@20.16.11) - vue: 3.5.11(typescript@5.5.4) + vue: 3.5.12(typescript@5.5.4) - '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4))': + '@vitejs/plugin-vue@5.1.4(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4))': dependencies: vite: 5.4.8(@types/node@20.16.11) - vue: 3.5.11(typescript@5.5.4) + vue: 3.5.12(typescript@5.5.4) '@vitest/eslint-plugin@1.1.7(@typescript-eslint/utils@8.8.1(eslint@9.12.0)(typescript@5.5.4))(eslint@9.12.0)(typescript@5.5.4)(vitest@1.6.0(@types/node@20.16.11)(jsdom@25.0.1))': dependencies: @@ -6026,7 +6026,7 @@ snapshots: dependencies: '@vitest/spy': 2.1.2 estree-walker: 3.0.3 - magic-string: 0.30.11 + magic-string: 0.30.12 optionalDependencies: vite: 5.4.8(@types/node@20.16.11) @@ -6034,7 +6034,7 @@ snapshots: dependencies: '@vitest/spy': 2.1.2 estree-walker: 3.0.3 - magic-string: 0.30.11 + magic-string: 0.30.12 optionalDependencies: vite: 5.4.8(@types/node@22.7.5) @@ -6055,14 +6055,14 @@ snapshots: '@vitest/snapshot@1.6.0': dependencies: - magic-string: 0.30.11 + magic-string: 0.30.12 pathe: 1.1.2 pretty-format: 29.7.0 '@vitest/snapshot@2.1.2': dependencies: '@vitest/pretty-format': 2.1.2 - magic-string: 0.30.11 + magic-string: 0.30.12 pathe: 1.1.2 '@vitest/spy@1.6.0': @@ -6124,39 +6124,39 @@ snapshots: '@babel/helper-module-imports': 7.25.7 '@babel/helper-plugin-utils': 7.25.7 '@babel/parser': 7.25.8 - '@vue/compiler-sfc': 3.5.11 + '@vue/compiler-sfc': 3.5.12 transitivePeerDependencies: - supports-color - '@vue/compiler-core@3.5.11': + '@vue/compiler-core@3.5.12': dependencies: '@babel/parser': 7.25.8 - '@vue/shared': 3.5.11 + '@vue/shared': 3.5.12 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.1 - '@vue/compiler-dom@3.5.11': + '@vue/compiler-dom@3.5.12': dependencies: - '@vue/compiler-core': 3.5.11 - '@vue/shared': 3.5.11 + '@vue/compiler-core': 3.5.12 + '@vue/shared': 3.5.12 - '@vue/compiler-sfc@3.5.11': + '@vue/compiler-sfc@3.5.12': dependencies: '@babel/parser': 7.25.8 - '@vue/compiler-core': 3.5.11 - '@vue/compiler-dom': 3.5.11 - '@vue/compiler-ssr': 3.5.11 - '@vue/shared': 3.5.11 + '@vue/compiler-core': 3.5.12 + '@vue/compiler-dom': 3.5.12 + '@vue/compiler-ssr': 3.5.12 + '@vue/shared': 3.5.12 estree-walker: 2.0.2 - magic-string: 0.30.11 + magic-string: 0.30.12 postcss: 8.4.47 source-map-js: 1.2.1 - '@vue/compiler-ssr@3.5.11': + '@vue/compiler-ssr@3.5.12': dependencies: - '@vue/compiler-dom': 3.5.11 - '@vue/shared': 3.5.11 + '@vue/compiler-dom': 3.5.12 + '@vue/shared': 3.5.12 '@vue/compiler-vue2@2.7.16': dependencies: @@ -6165,7 +6165,7 @@ snapshots: '@vue/devtools-api@6.6.4': {} - '@vue/devtools-core@7.4.6(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4))': + '@vue/devtools-core@7.4.6(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4))': dependencies: '@vue/devtools-kit': 7.4.6 '@vue/devtools-shared': 7.4.6 @@ -6173,7 +6173,7 @@ snapshots: nanoid: 3.3.7 pathe: 1.1.2 vite-hot-client: 0.2.3(vite@5.4.8(@types/node@20.16.11)) - vue: 3.5.11(typescript@5.5.4) + vue: 3.5.12(typescript@5.5.4) transitivePeerDependencies: - vite @@ -6203,9 +6203,9 @@ snapshots: '@vue/language-core@2.1.6(typescript@5.5.4)': dependencies: '@volar/language-core': 2.4.6 - '@vue/compiler-dom': 3.5.11 + '@vue/compiler-dom': 3.5.12 '@vue/compiler-vue2': 2.7.16 - '@vue/shared': 3.5.11 + '@vue/shared': 3.5.12 computeds: 0.0.1 minimatch: 9.0.5 muggle-string: 0.4.1 @@ -6213,29 +6213,29 @@ snapshots: optionalDependencies: typescript: 5.5.4 - '@vue/reactivity@3.5.11': + '@vue/reactivity@3.5.12': dependencies: - '@vue/shared': 3.5.11 + '@vue/shared': 3.5.12 - '@vue/runtime-core@3.5.11': + '@vue/runtime-core@3.5.12': dependencies: - '@vue/reactivity': 3.5.11 - '@vue/shared': 3.5.11 + '@vue/reactivity': 3.5.12 + '@vue/shared': 3.5.12 - '@vue/runtime-dom@3.5.11': + '@vue/runtime-dom@3.5.12': dependencies: - '@vue/reactivity': 3.5.11 - '@vue/runtime-core': 3.5.11 - '@vue/shared': 3.5.11 + '@vue/reactivity': 3.5.12 + '@vue/runtime-core': 3.5.12 + '@vue/shared': 3.5.12 csstype: 3.1.3 - '@vue/server-renderer@3.5.11(vue@3.5.11(typescript@5.5.4))': + '@vue/server-renderer@3.5.12(vue@3.5.12(typescript@5.5.4))': dependencies: - '@vue/compiler-ssr': 3.5.11 - '@vue/shared': 3.5.11 - vue: 3.5.11(typescript@5.5.4) + '@vue/compiler-ssr': 3.5.12 + '@vue/shared': 3.5.12 + vue: 3.5.12(typescript@5.5.4) - '@vue/shared@3.5.11': {} + '@vue/shared@3.5.12': {} '@vue/test-utils@2.4.6': dependencies: @@ -6267,7 +6267,7 @@ snapshots: agent-base@7.1.1: dependencies: - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -6493,8 +6493,8 @@ snapshots: browserslist@4.24.0: dependencies: - caniuse-lite: 1.0.30001667 - electron-to-chromium: 1.5.35 + caniuse-lite: 1.0.30001668 + electron-to-chromium: 1.5.36 node-releases: 2.0.18 update-browserslist-db: 1.1.1(browserslist@4.24.0) @@ -6525,7 +6525,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001667: {} + caniuse-lite@1.0.30001668: {} caseless@0.12.0: {} @@ -6789,10 +6789,6 @@ snapshots: optionalDependencies: supports-color: 8.1.1 - debug@4.3.7: - dependencies: - ms: 2.1.3 - debug@4.3.7(supports-color@8.1.1): dependencies: ms: 2.1.3 @@ -6911,7 +6907,7 @@ snapshots: dependencies: jake: 10.9.2 - electron-to-chromium@1.5.35: {} + electron-to-chromium@1.5.36: {} emoji-regex@8.0.0: {} @@ -7133,12 +7129,12 @@ snapshots: dependencies: eslint: 9.12.0 - eslint-plugin-cypress@3.5.0(eslint@9.12.0): + eslint-plugin-cypress@3.6.0(eslint@9.12.0): dependencies: eslint: 9.12.0 globals: 13.24.0 - eslint-plugin-playwright@1.6.2(eslint@9.12.0): + eslint-plugin-playwright@1.7.0(eslint@9.12.0): dependencies: eslint: 9.12.0 globals: 13.24.0 @@ -7152,7 +7148,7 @@ snapshots: optionalDependencies: eslint-config-prettier: 9.1.0(eslint@9.12.0) - eslint-plugin-vue@9.28.0(eslint@9.12.0): + eslint-plugin-vue@9.29.0(eslint@9.12.0): dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@9.12.0) eslint: 9.12.0 @@ -7197,7 +7193,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) escape-string-regexp: 4.0.0 eslint-scope: 8.1.0 eslint-visitor-keys: 4.1.0 @@ -7604,7 +7600,7 @@ snapshots: http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.1 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -7617,7 +7613,7 @@ snapshots: https-proxy-agent@7.0.5: dependencies: agent-base: 7.1.1 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) transitivePeerDependencies: - supports-color @@ -7874,7 +7870,7 @@ snapshots: https-proxy-agent: 7.0.5 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.13 - parse5: 7.1.2 + parse5: 7.2.0 rrweb-cssom: 0.7.1 saxes: 6.0.0 symbol-tree: 3.2.4 @@ -7902,7 +7898,7 @@ snapshots: https-proxy-agent: 7.0.5 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.13 - parse5: 7.1.2 + parse5: 7.2.0 rrweb-cssom: 0.7.1 saxes: 6.0.0 symbol-tree: 3.2.4 @@ -8054,7 +8050,7 @@ snapshots: lru-cache@7.18.3: {} - magic-string@0.30.11: + magic-string@0.30.12: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -8369,7 +8365,7 @@ snapshots: parse-ms@4.0.0: {} - parse5@7.1.2: + parse5@7.2.0: dependencies: entities: 4.5.0 @@ -8416,11 +8412,11 @@ snapshots: pify@2.3.0: {} - pinia@2.2.4(typescript@5.5.4)(vue@3.5.11(typescript@5.5.4)): + pinia@2.2.4(typescript@5.5.4)(vue@3.5.12(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.4 - vue: 3.5.11(typescript@5.5.4) - vue-demi: 0.14.10(vue@3.5.11(typescript@5.5.4)) + vue: 3.5.12(typescript@5.5.4) + vue-demi: 0.14.10(vue@3.5.12(typescript@5.5.4)) optionalDependencies: typescript: 5.5.4 @@ -8444,7 +8440,7 @@ snapshots: '@rollup/plugin-replace': 5.0.7(rollup@4.24.0) '@rollup/pluginutils': 5.1.2(rollup@4.24.0) esbuild: 0.23.1 - magic-string: 0.30.11 + magic-string: 0.30.12 rollup: 4.24.0 optionalDependencies: typescript: 5.5.4 @@ -8938,11 +8934,11 @@ snapshots: tinyspy@3.0.2: {} - tldts-core@6.1.50: {} + tldts-core@6.1.51: {} - tldts@6.1.50: + tldts@6.1.51: dependencies: - tldts-core: 6.1.50 + tldts-core: 6.1.51 tmp@0.2.3: {} @@ -8963,7 +8959,7 @@ snapshots: tough-cookie@5.0.0: dependencies: - tldts: 6.1.50 + tldts: 6.1.51 tr46@5.0.0: dependencies: @@ -9114,7 +9110,7 @@ snapshots: vite-node@2.1.2(@types/node@22.7.5): dependencies: cac: 6.7.14 - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) pathe: 1.1.2 vite: 5.4.8(@types/node@22.7.5) transitivePeerDependencies: @@ -9158,9 +9154,9 @@ snapshots: - supports-color - utf-8-validate - vite-plugin-vue-devtools@7.4.6(rollup@4.24.0)(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)): + vite-plugin-vue-devtools@7.4.6(rollup@4.24.0)(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)): dependencies: - '@vue/devtools-core': 7.4.6(vite@5.4.8(@types/node@20.16.11))(vue@3.5.11(typescript@5.5.4)) + '@vue/devtools-core': 7.4.6(vite@5.4.8(@types/node@20.16.11))(vue@3.5.12(typescript@5.5.4)) '@vue/devtools-kit': 7.4.6 '@vue/devtools-shared': 7.4.6 execa: 8.0.1 @@ -9182,9 +9178,9 @@ snapshots: '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.25.8) '@babel/plugin-transform-typescript': 7.25.7(@babel/core@7.25.8) '@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.25.8) - '@vue/compiler-dom': 3.5.11 + '@vue/compiler-dom': 3.5.12 kolorist: 1.8.0 - magic-string: 0.30.11 + magic-string: 0.30.12 vite: 5.4.8(@types/node@20.16.11) transitivePeerDependencies: - supports-color @@ -9228,7 +9224,7 @@ snapshots: debug: 4.3.7(supports-color@8.1.1) execa: 8.0.1 local-pkg: 0.5.0 - magic-string: 0.30.11 + magic-string: 0.30.12 pathe: 1.1.2 picocolors: 1.1.0 std-env: 3.7.0 @@ -9262,7 +9258,7 @@ snapshots: '@vitest/utils': 2.1.2 chai: 5.1.1 debug: 4.3.7(supports-color@8.1.1) - magic-string: 0.30.11 + magic-string: 0.30.12 pathe: 1.1.2 std-env: 3.7.0 tinybench: 2.9.0 @@ -9296,8 +9292,8 @@ snapshots: '@vitest/spy': 2.1.2 '@vitest/utils': 2.1.2 chai: 5.1.1 - debug: 4.3.7 - magic-string: 0.30.11 + debug: 4.3.7(supports-color@8.1.1) + magic-string: 0.30.12 pathe: 1.1.2 std-env: 3.7.0 tinybench: 2.9.0 @@ -9325,13 +9321,13 @@ snapshots: vue-component-type-helpers@2.1.6: {} - vue-demi@0.14.10(vue@3.5.11(typescript@5.5.4)): + vue-demi@0.14.10(vue@3.5.12(typescript@5.5.4)): dependencies: - vue: 3.5.11(typescript@5.5.4) + vue: 3.5.12(typescript@5.5.4) vue-eslint-parser@9.4.3(eslint@9.12.0): dependencies: - debug: 4.3.7 + debug: 4.3.7(supports-color@8.1.1) eslint: 9.12.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 @@ -9342,10 +9338,10 @@ snapshots: transitivePeerDependencies: - supports-color - vue-router@4.4.5(vue@3.5.11(typescript@5.5.4)): + vue-router@4.4.5(vue@3.5.12(typescript@5.5.4)): dependencies: '@vue/devtools-api': 6.6.4 - vue: 3.5.11(typescript@5.5.4) + vue: 3.5.12(typescript@5.5.4) vue-tsc@2.1.6(typescript@5.5.4): dependencies: @@ -9354,13 +9350,13 @@ snapshots: semver: 7.6.3 typescript: 5.5.4 - vue@3.5.11(typescript@5.5.4): + vue@3.5.12(typescript@5.5.4): dependencies: - '@vue/compiler-dom': 3.5.11 - '@vue/compiler-sfc': 3.5.11 - '@vue/runtime-dom': 3.5.11 - '@vue/server-renderer': 3.5.11(vue@3.5.11(typescript@5.5.4)) - '@vue/shared': 3.5.11 + '@vue/compiler-dom': 3.5.12 + '@vue/compiler-sfc': 3.5.12 + '@vue/runtime-dom': 3.5.12 + '@vue/server-renderer': 3.5.12(vue@3.5.12(typescript@5.5.4)) + '@vue/shared': 3.5.12 optionalDependencies: typescript: 5.5.4 diff --git a/test/fixtures/with-older-espree/package.json b/test/fixtures/with-older-espree/package.json index 45a3411..63847de 100644 --- a/test/fixtures/with-older-espree/package.json +++ b/test/fixtures/with-older-espree/package.json @@ -12,7 +12,7 @@ "lint": "eslint . --fix" }, "dependencies": { - "vue": "^3.5.11" + "vue": "^3.5.12" }, "devDependencies": { "@tsconfig/node20": "^20.1.4", @@ -21,8 +21,8 @@ "@vue/eslint-config-typescript": "workspace:*", "@vue/tsconfig": "^0.5.1", "eslint": "^9.12.0", - "eslint-plugin-vue": "^9.28.0", - "espree": "9", + "eslint-plugin-vue": "^9.29.0", + "espree": "^9.6.1", "npm-run-all2": "^6.2.3", "typescript": "~5.5.4", "vite": "^5.4.8",