diff --git a/cypress/.vscode/extensions.json b/cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/cypress/.vscode/extensions.json +++ b/cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/cypress/README.md b/cypress/README.md index 852b8441..b374b97f 100644 --- a/cypress/README.md +++ b/cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/cypress/package.json b/cypress/package.json index 83dc2f90..be423d2e 100644 --- a/cypress/package.json +++ b/cypress/package.json @@ -13,12 +13,12 @@ "test:unit:dev": "cypress open --component" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "cypress": "^13.6.3", + "@vitejs/plugin-vue": "^5.0.4", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/default/.vscode/extensions.json b/default/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/default/.vscode/extensions.json +++ b/default/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/default/README.md b/default/README.md index 46c62b77..76369f10 100644 --- a/default/README.md +++ b/default/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/default/package.json b/default/package.json index e4853200..f366097f 100644 --- a/default/package.json +++ b/default/package.json @@ -9,10 +9,10 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/devtools/.gitignore b/devtools/.gitignore new file mode 100644 index 00000000..8ee54e8d --- /dev/null +++ b/devtools/.gitignore @@ -0,0 +1,30 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +/cypress/videos/ +/cypress/screenshots/ + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo diff --git a/devtools/.vscode/extensions.json b/devtools/.vscode/extensions.json new file mode 100644 index 00000000..a7cea0b0 --- /dev/null +++ b/devtools/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["Vue.volar"] +} diff --git a/devtools/README.md b/devtools/README.md new file mode 100644 index 00000000..0a29a1ca --- /dev/null +++ b/devtools/README.md @@ -0,0 +1,29 @@ +# devtools + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). + +## Customize configuration + +See [Vite Configuration Reference](https://vitejs.dev/config/). + +## Project Setup + +```sh +pnpm install +``` + +### Compile and Hot-Reload for Development + +```sh +pnpm dev +``` + +### Compile and Minify for Production + +```sh +pnpm build +``` diff --git a/devtools/index.html b/devtools/index.html new file mode 100644 index 00000000..99f583aa --- /dev/null +++ b/devtools/index.html @@ -0,0 +1,13 @@ + + + + + + + Vite App + + +
+ + + diff --git a/devtools/jsconfig.json b/devtools/jsconfig.json new file mode 100644 index 00000000..5a1f2d22 --- /dev/null +++ b/devtools/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "paths": { + "@/*": ["./src/*"] + } + }, + "exclude": ["node_modules", "dist"] +} diff --git a/devtools/package.json b/devtools/package.json new file mode 100644 index 00000000..25edf100 --- /dev/null +++ b/devtools/package.json @@ -0,0 +1,19 @@ +{ + "name": "devtools", + "version": "0.0.0", + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "preview": "vite preview" + }, + "dependencies": { + "vue": "^3.4.21" + }, + "devDependencies": { + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5", + "vite-plugin-vue-devtools": "^7.0.16" + } +} diff --git a/devtools/public/favicon.ico b/devtools/public/favicon.ico new file mode 100644 index 00000000..df36fcfb Binary files /dev/null and b/devtools/public/favicon.ico differ diff --git a/devtools/src/App.vue b/devtools/src/App.vue new file mode 100644 index 00000000..633a5dfe --- /dev/null +++ b/devtools/src/App.vue @@ -0,0 +1,47 @@ + + + + + diff --git a/devtools/src/assets/base.css b/devtools/src/assets/base.css new file mode 100644 index 00000000..8816868a --- /dev/null +++ b/devtools/src/assets/base.css @@ -0,0 +1,86 @@ +/* color palette from */ +:root { + --vt-c-white: #ffffff; + --vt-c-white-soft: #f8f8f8; + --vt-c-white-mute: #f2f2f2; + + --vt-c-black: #181818; + --vt-c-black-soft: #222222; + --vt-c-black-mute: #282828; + + --vt-c-indigo: #2c3e50; + + --vt-c-divider-light-1: rgba(60, 60, 60, 0.29); + --vt-c-divider-light-2: rgba(60, 60, 60, 0.12); + --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65); + --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48); + + --vt-c-text-light-1: var(--vt-c-indigo); + --vt-c-text-light-2: rgba(60, 60, 60, 0.66); + --vt-c-text-dark-1: var(--vt-c-white); + --vt-c-text-dark-2: rgba(235, 235, 235, 0.64); +} + +/* semantic color variables for this project */ +:root { + --color-background: var(--vt-c-white); + --color-background-soft: var(--vt-c-white-soft); + --color-background-mute: var(--vt-c-white-mute); + + --color-border: var(--vt-c-divider-light-2); + --color-border-hover: var(--vt-c-divider-light-1); + + --color-heading: var(--vt-c-text-light-1); + --color-text: var(--vt-c-text-light-1); + + --section-gap: 160px; +} + +@media (prefers-color-scheme: dark) { + :root { + --color-background: var(--vt-c-black); + --color-background-soft: var(--vt-c-black-soft); + --color-background-mute: var(--vt-c-black-mute); + + --color-border: var(--vt-c-divider-dark-2); + --color-border-hover: var(--vt-c-divider-dark-1); + + --color-heading: var(--vt-c-text-dark-1); + --color-text: var(--vt-c-text-dark-2); + } +} + +*, +*::before, +*::after { + box-sizing: border-box; + margin: 0; + font-weight: normal; +} + +body { + min-height: 100vh; + color: var(--color-text); + background: var(--color-background); + transition: + color 0.5s, + background-color 0.5s; + line-height: 1.6; + font-family: + Inter, + -apple-system, + BlinkMacSystemFont, + 'Segoe UI', + Roboto, + Oxygen, + Ubuntu, + Cantarell, + 'Fira Sans', + 'Droid Sans', + 'Helvetica Neue', + sans-serif; + font-size: 15px; + text-rendering: optimizeLegibility; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} diff --git a/devtools/src/assets/logo.svg b/devtools/src/assets/logo.svg new file mode 100644 index 00000000..75656603 --- /dev/null +++ b/devtools/src/assets/logo.svg @@ -0,0 +1 @@ + diff --git a/devtools/src/assets/main.css b/devtools/src/assets/main.css new file mode 100644 index 00000000..36fb845b --- /dev/null +++ b/devtools/src/assets/main.css @@ -0,0 +1,35 @@ +@import './base.css'; + +#app { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + font-weight: normal; +} + +a, +.green { + text-decoration: none; + color: hsla(160, 100%, 37%, 1); + transition: 0.4s; + padding: 3px; +} + +@media (hover: hover) { + a:hover { + background-color: hsla(160, 100%, 37%, 0.2); + } +} + +@media (min-width: 1024px) { + body { + display: flex; + place-items: center; + } + + #app { + display: grid; + grid-template-columns: 1fr 1fr; + padding: 0 2rem; + } +} diff --git a/devtools/src/components/HelloWorld.vue b/devtools/src/components/HelloWorld.vue new file mode 100644 index 00000000..5fb372c9 --- /dev/null +++ b/devtools/src/components/HelloWorld.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/devtools/src/components/TheWelcome.vue b/devtools/src/components/TheWelcome.vue new file mode 100644 index 00000000..dab95367 --- /dev/null +++ b/devtools/src/components/TheWelcome.vue @@ -0,0 +1,88 @@ + + + diff --git a/devtools/src/components/WelcomeItem.vue b/devtools/src/components/WelcomeItem.vue new file mode 100644 index 00000000..6d7086ae --- /dev/null +++ b/devtools/src/components/WelcomeItem.vue @@ -0,0 +1,87 @@ + + + diff --git a/devtools/src/components/icons/IconCommunity.vue b/devtools/src/components/icons/IconCommunity.vue new file mode 100644 index 00000000..2dc8b055 --- /dev/null +++ b/devtools/src/components/icons/IconCommunity.vue @@ -0,0 +1,7 @@ + diff --git a/devtools/src/components/icons/IconDocumentation.vue b/devtools/src/components/icons/IconDocumentation.vue new file mode 100644 index 00000000..6d4791cf --- /dev/null +++ b/devtools/src/components/icons/IconDocumentation.vue @@ -0,0 +1,7 @@ + diff --git a/devtools/src/components/icons/IconEcosystem.vue b/devtools/src/components/icons/IconEcosystem.vue new file mode 100644 index 00000000..c3a4f078 --- /dev/null +++ b/devtools/src/components/icons/IconEcosystem.vue @@ -0,0 +1,7 @@ + diff --git a/devtools/src/components/icons/IconSupport.vue b/devtools/src/components/icons/IconSupport.vue new file mode 100644 index 00000000..7452834d --- /dev/null +++ b/devtools/src/components/icons/IconSupport.vue @@ -0,0 +1,7 @@ + diff --git a/devtools/src/components/icons/IconTooling.vue b/devtools/src/components/icons/IconTooling.vue new file mode 100644 index 00000000..660598d7 --- /dev/null +++ b/devtools/src/components/icons/IconTooling.vue @@ -0,0 +1,19 @@ + + diff --git a/devtools/src/main.js b/devtools/src/main.js new file mode 100644 index 00000000..0ac3a5ff --- /dev/null +++ b/devtools/src/main.js @@ -0,0 +1,6 @@ +import './assets/main.css' + +import { createApp } from 'vue' +import App from './App.vue' + +createApp(App).mount('#app') diff --git a/devtools/vite.config.js b/devtools/vite.config.js new file mode 100644 index 00000000..ca4f95a5 --- /dev/null +++ b/devtools/vite.config.js @@ -0,0 +1,18 @@ +import { fileURLToPath, URL } from 'node:url' + +import { defineConfig } from 'vite' +import vue from '@vitejs/plugin-vue' +import VueDevTools from 'vite-plugin-vue-devtools' + +// https://vitejs.dev/config/ +export default defineConfig({ + plugins: [ + vue(), + VueDevTools(), + ], + resolve: { + alias: { + '@': fileURLToPath(new URL('./src', import.meta.url)) + } + } +}) diff --git a/jsx-cypress/.vscode/extensions.json b/jsx-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-cypress/.vscode/extensions.json +++ b/jsx-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-cypress/README.md b/jsx-cypress/README.md index 488049ec..d19ef73c 100644 --- a/jsx-cypress/README.md +++ b/jsx-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-cypress/package.json b/jsx-cypress/package.json index 268dfb88..6bad18a3 100644 --- a/jsx-cypress/package.json +++ b/jsx-cypress/package.json @@ -13,13 +13,13 @@ "test:unit:dev": "cypress open --component" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-nightwatch/.vscode/extensions.json b/jsx-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-nightwatch/.vscode/extensions.json +++ b/jsx-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-nightwatch/README.md b/jsx-nightwatch/README.md index bac37a25..49790dc8 100644 --- a/jsx-nightwatch/README.md +++ b/jsx-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-nightwatch/package.json b/jsx-nightwatch/package.json index 43855f18..7b2fcadd 100644 --- a/jsx-nightwatch/package.json +++ b/jsx-nightwatch/package.json @@ -11,18 +11,18 @@ "test:unit": "nightwatch src/**/__tests__/*" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/jsx-pinia-cypress/.vscode/extensions.json b/jsx-pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-pinia-cypress/.vscode/extensions.json +++ b/jsx-pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-pinia-cypress/README.md b/jsx-pinia-cypress/README.md index cb48e51f..3e233505 100644 --- a/jsx-pinia-cypress/README.md +++ b/jsx-pinia-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-pinia-cypress/package.json b/jsx-pinia-cypress/package.json index 92f8cb9e..78d1f78c 100644 --- a/jsx-pinia-cypress/package.json +++ b/jsx-pinia-cypress/package.json @@ -14,13 +14,13 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-pinia-nightwatch/.vscode/extensions.json b/jsx-pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-pinia-nightwatch/.vscode/extensions.json +++ b/jsx-pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-pinia-nightwatch/README.md b/jsx-pinia-nightwatch/README.md index 04dbc4eb..81c4f9f8 100644 --- a/jsx-pinia-nightwatch/README.md +++ b/jsx-pinia-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-pinia-nightwatch/package.json b/jsx-pinia-nightwatch/package.json index 4196aa5e..27e2e539 100644 --- a/jsx-pinia-nightwatch/package.json +++ b/jsx-pinia-nightwatch/package.json @@ -12,18 +12,18 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/jsx-pinia-playwright/.vscode/extensions.json b/jsx-pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-pinia-playwright/.vscode/extensions.json +++ b/jsx-pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-pinia-playwright/README.md b/jsx-pinia-playwright/README.md index 96b5d9f2..bfcee0c0 100644 --- a/jsx-pinia-playwright/README.md +++ b/jsx-pinia-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-pinia-playwright/package.json b/jsx-pinia-playwright/package.json index 1422b1d7..c44de332 100644 --- a/jsx-pinia-playwright/package.json +++ b/jsx-pinia-playwright/package.json @@ -11,12 +11,12 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-pinia-vitest-cypress/.vscode/extensions.json b/jsx-pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-pinia-vitest-cypress/.vscode/extensions.json +++ b/jsx-pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-pinia-vitest-cypress/README.md b/jsx-pinia-vitest-cypress/README.md index 1357e713..26b09d7f 100644 --- a/jsx-pinia-vitest-cypress/README.md +++ b/jsx-pinia-vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-pinia-vitest-cypress/package.json b/jsx-pinia-vitest-cypress/package.json index 17bc0988..c389cfe5 100644 --- a/jsx-pinia-vitest-cypress/package.json +++ b/jsx-pinia-vitest-cypress/package.json @@ -13,16 +13,16 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-pinia-vitest-nightwatch/.vscode/extensions.json b/jsx-pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-pinia-vitest-nightwatch/.vscode/extensions.json +++ b/jsx-pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-pinia-vitest-nightwatch/README.md b/jsx-pinia-vitest-nightwatch/README.md index dd67b4d8..9001a232 100644 --- a/jsx-pinia-vitest-nightwatch/README.md +++ b/jsx-pinia-vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/jsx-pinia-vitest-nightwatch/package.json b/jsx-pinia-vitest-nightwatch/package.json index b55336a4..ebca17ea 100644 --- a/jsx-pinia-vitest-nightwatch/package.json +++ b/jsx-pinia-vitest-nightwatch/package.json @@ -12,20 +12,20 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/jsx-pinia-vitest-playwright/.vscode/extensions.json b/jsx-pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-pinia-vitest-playwright/.vscode/extensions.json +++ b/jsx-pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-pinia-vitest-playwright/README.md b/jsx-pinia-vitest-playwright/README.md index 67fbff34..77f1e0cc 100644 --- a/jsx-pinia-vitest-playwright/README.md +++ b/jsx-pinia-vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-pinia-vitest-playwright/package.json b/jsx-pinia-vitest-playwright/package.json index bf58ec47..daccb83a 100644 --- a/jsx-pinia-vitest-playwright/package.json +++ b/jsx-pinia-vitest-playwright/package.json @@ -12,15 +12,15 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-pinia-vitest/.vscode/extensions.json b/jsx-pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-pinia-vitest/.vscode/extensions.json +++ b/jsx-pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-pinia-vitest/README.md b/jsx-pinia-vitest/README.md index 51625a96..9222dd2b 100644 --- a/jsx-pinia-vitest/README.md +++ b/jsx-pinia-vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-pinia-vitest/package.json b/jsx-pinia-vitest/package.json index e2aeba68..7ab96293 100644 --- a/jsx-pinia-vitest/package.json +++ b/jsx-pinia-vitest/package.json @@ -11,14 +11,14 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-pinia-with-tests/.vscode/extensions.json b/jsx-pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-pinia-with-tests/.vscode/extensions.json +++ b/jsx-pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-pinia-with-tests/README.md b/jsx-pinia-with-tests/README.md index 203fbd7f..042fd939 100644 --- a/jsx-pinia-with-tests/README.md +++ b/jsx-pinia-with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/jsx-pinia-with-tests/cypress.config.js b/jsx-pinia-with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/jsx-pinia-with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/jsx-pinia-with-tests/cypress/e2e/example.cy.js b/jsx-pinia-with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/jsx-pinia-with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/jsx-pinia-with-tests/cypress/e2e/jsconfig.json b/jsx-pinia-with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/jsx-pinia-with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/jsx-pinia-with-tests/cypress/fixtures/example.json b/jsx-pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/jsx-pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/jsx-pinia-with-tests/cypress/support/commands.js b/jsx-pinia-with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/jsx-pinia-with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/jsx-pinia-with-tests/cypress/support/e2e.js b/jsx-pinia-with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/jsx-pinia-with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/jsx-pinia-with-tests/package.json b/jsx-pinia-with-tests/package.json index 072feca5..3becef04 100644 --- a/jsx-pinia-with-tests/package.json +++ b/jsx-pinia-with-tests/package.json @@ -6,23 +6,15 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5" } } diff --git a/jsx-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js b/jsx-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/jsx-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/jsx-pinia-with-tests/vitest.config.js b/jsx-pinia-with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/jsx-pinia-with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/jsx-pinia/.vscode/extensions.json b/jsx-pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-pinia/.vscode/extensions.json +++ b/jsx-pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-pinia/README.md b/jsx-pinia/README.md index 5e367cb1..b1257abf 100644 --- a/jsx-pinia/README.md +++ b/jsx-pinia/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-pinia/package.json b/jsx-pinia/package.json index e684ea79..71104ad6 100644 --- a/jsx-pinia/package.json +++ b/jsx-pinia/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-playwright/.vscode/extensions.json b/jsx-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-playwright/.vscode/extensions.json +++ b/jsx-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-playwright/README.md b/jsx-playwright/README.md index 63764acb..3320c16e 100644 --- a/jsx-playwright/README.md +++ b/jsx-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-playwright/package.json b/jsx-playwright/package.json index 8bb17f63..9be8ff03 100644 --- a/jsx-playwright/package.json +++ b/jsx-playwright/package.json @@ -10,12 +10,12 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-router-cypress/.vscode/extensions.json b/jsx-router-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-cypress/.vscode/extensions.json +++ b/jsx-router-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-cypress/README.md b/jsx-router-cypress/README.md index 5ad25e39..72ebe99e 100644 --- a/jsx-router-cypress/README.md +++ b/jsx-router-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-cypress/package.json b/jsx-router-cypress/package.json index 1e8ddf55..4bfb6f08 100644 --- a/jsx-router-cypress/package.json +++ b/jsx-router-cypress/package.json @@ -13,14 +13,14 @@ "test:unit:dev": "cypress open --component" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-router-nightwatch/.vscode/extensions.json b/jsx-router-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-router-nightwatch/.vscode/extensions.json +++ b/jsx-router-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-router-nightwatch/README.md b/jsx-router-nightwatch/README.md index b541cf7b..3ed366cf 100644 --- a/jsx-router-nightwatch/README.md +++ b/jsx-router-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-nightwatch/package.json b/jsx-router-nightwatch/package.json index f860b6f1..fc353e3d 100644 --- a/jsx-router-nightwatch/package.json +++ b/jsx-router-nightwatch/package.json @@ -11,19 +11,19 @@ "test:unit": "nightwatch src/**/__tests__/*" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/jsx-router-pinia-cypress/.vscode/extensions.json b/jsx-router-pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-pinia-cypress/.vscode/extensions.json +++ b/jsx-router-pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-pinia-cypress/README.md b/jsx-router-pinia-cypress/README.md index bd8ba088..2e1785fe 100644 --- a/jsx-router-pinia-cypress/README.md +++ b/jsx-router-pinia-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-pinia-cypress/package.json b/jsx-router-pinia-cypress/package.json index f7cdc8f3..3215b0d4 100644 --- a/jsx-router-pinia-cypress/package.json +++ b/jsx-router-pinia-cypress/package.json @@ -14,14 +14,14 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-router-pinia-nightwatch/.vscode/extensions.json b/jsx-router-pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-router-pinia-nightwatch/.vscode/extensions.json +++ b/jsx-router-pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-router-pinia-nightwatch/README.md b/jsx-router-pinia-nightwatch/README.md index f7c78fcc..9cc86b8e 100644 --- a/jsx-router-pinia-nightwatch/README.md +++ b/jsx-router-pinia-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-pinia-nightwatch/package.json b/jsx-router-pinia-nightwatch/package.json index 49d6aeb4..85e42815 100644 --- a/jsx-router-pinia-nightwatch/package.json +++ b/jsx-router-pinia-nightwatch/package.json @@ -12,19 +12,19 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/jsx-router-pinia-playwright/.vscode/extensions.json b/jsx-router-pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-router-pinia-playwright/.vscode/extensions.json +++ b/jsx-router-pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-router-pinia-playwright/README.md b/jsx-router-pinia-playwright/README.md index c3e58c18..aed0740b 100644 --- a/jsx-router-pinia-playwright/README.md +++ b/jsx-router-pinia-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-pinia-playwright/package.json b/jsx-router-pinia-playwright/package.json index deb97f88..b4206a06 100644 --- a/jsx-router-pinia-playwright/package.json +++ b/jsx-router-pinia-playwright/package.json @@ -11,13 +11,13 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-router-pinia-vitest-cypress/.vscode/extensions.json b/jsx-router-pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-pinia-vitest-cypress/.vscode/extensions.json +++ b/jsx-router-pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-pinia-vitest-cypress/README.md b/jsx-router-pinia-vitest-cypress/README.md index d6731b70..289348d8 100644 --- a/jsx-router-pinia-vitest-cypress/README.md +++ b/jsx-router-pinia-vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-pinia-vitest-cypress/package.json b/jsx-router-pinia-vitest-cypress/package.json index c86147ac..e23906ae 100644 --- a/jsx-router-pinia-vitest-cypress/package.json +++ b/jsx-router-pinia-vitest-cypress/package.json @@ -13,17 +13,17 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json b/jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json +++ b/jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-router-pinia-vitest-nightwatch/README.md b/jsx-router-pinia-vitest-nightwatch/README.md index 9ddf83e9..c2775950 100644 --- a/jsx-router-pinia-vitest-nightwatch/README.md +++ b/jsx-router-pinia-vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/jsx-router-pinia-vitest-nightwatch/package.json b/jsx-router-pinia-vitest-nightwatch/package.json index 06a83504..e57241e9 100644 --- a/jsx-router-pinia-vitest-nightwatch/package.json +++ b/jsx-router-pinia-vitest-nightwatch/package.json @@ -12,21 +12,21 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/jsx-router-pinia-vitest-playwright/.vscode/extensions.json b/jsx-router-pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-router-pinia-vitest-playwright/.vscode/extensions.json +++ b/jsx-router-pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-router-pinia-vitest-playwright/README.md b/jsx-router-pinia-vitest-playwright/README.md index 97a403cd..bb432988 100644 --- a/jsx-router-pinia-vitest-playwright/README.md +++ b/jsx-router-pinia-vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-pinia-vitest-playwright/package.json b/jsx-router-pinia-vitest-playwright/package.json index 6dc1657e..c0d6db28 100644 --- a/jsx-router-pinia-vitest-playwright/package.json +++ b/jsx-router-pinia-vitest-playwright/package.json @@ -12,16 +12,16 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-router-pinia-vitest/.vscode/extensions.json b/jsx-router-pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-pinia-vitest/.vscode/extensions.json +++ b/jsx-router-pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-pinia-vitest/README.md b/jsx-router-pinia-vitest/README.md index 8421cc83..c7766ffd 100644 --- a/jsx-router-pinia-vitest/README.md +++ b/jsx-router-pinia-vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-pinia-vitest/package.json b/jsx-router-pinia-vitest/package.json index d67782de..11cb6b0a 100644 --- a/jsx-router-pinia-vitest/package.json +++ b/jsx-router-pinia-vitest/package.json @@ -11,15 +11,15 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-router-pinia-with-tests/.vscode/extensions.json b/jsx-router-pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-pinia-with-tests/.vscode/extensions.json +++ b/jsx-router-pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-pinia-with-tests/README.md b/jsx-router-pinia-with-tests/README.md index 577668c1..2726bf88 100644 --- a/jsx-router-pinia-with-tests/README.md +++ b/jsx-router-pinia-with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/jsx-router-pinia-with-tests/cypress.config.js b/jsx-router-pinia-with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/jsx-router-pinia-with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/jsx-router-pinia-with-tests/cypress/e2e/example.cy.js b/jsx-router-pinia-with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/jsx-router-pinia-with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/jsx-router-pinia-with-tests/cypress/e2e/jsconfig.json b/jsx-router-pinia-with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/jsx-router-pinia-with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/jsx-router-pinia-with-tests/cypress/fixtures/example.json b/jsx-router-pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/jsx-router-pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/jsx-router-pinia-with-tests/cypress/support/commands.js b/jsx-router-pinia-with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/jsx-router-pinia-with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/jsx-router-pinia-with-tests/cypress/support/e2e.js b/jsx-router-pinia-with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/jsx-router-pinia-with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/jsx-router-pinia-with-tests/package.json b/jsx-router-pinia-with-tests/package.json index 2d2c7ac8..944e8cd7 100644 --- a/jsx-router-pinia-with-tests/package.json +++ b/jsx-router-pinia-with-tests/package.json @@ -6,24 +6,16 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5" } } diff --git a/jsx-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js b/jsx-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/jsx-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/jsx-router-pinia-with-tests/vitest.config.js b/jsx-router-pinia-with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/jsx-router-pinia-with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/jsx-router-pinia/.vscode/extensions.json b/jsx-router-pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-pinia/.vscode/extensions.json +++ b/jsx-router-pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-pinia/README.md b/jsx-router-pinia/README.md index a13324e4..2d50230c 100644 --- a/jsx-router-pinia/README.md +++ b/jsx-router-pinia/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-pinia/package.json b/jsx-router-pinia/package.json index aa5f3583..9109f7ed 100644 --- a/jsx-router-pinia/package.json +++ b/jsx-router-pinia/package.json @@ -10,12 +10,12 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-router-playwright/.vscode/extensions.json b/jsx-router-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-router-playwright/.vscode/extensions.json +++ b/jsx-router-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-router-playwright/README.md b/jsx-router-playwright/README.md index 3cdbd6e2..ba61b172 100644 --- a/jsx-router-playwright/README.md +++ b/jsx-router-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-playwright/package.json b/jsx-router-playwright/package.json index 1a989c56..4edef736 100644 --- a/jsx-router-playwright/package.json +++ b/jsx-router-playwright/package.json @@ -10,13 +10,13 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-router-vitest-cypress/.vscode/extensions.json b/jsx-router-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-vitest-cypress/.vscode/extensions.json +++ b/jsx-router-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-vitest-cypress/README.md b/jsx-router-vitest-cypress/README.md index f2ea17da..55237d9d 100644 --- a/jsx-router-vitest-cypress/README.md +++ b/jsx-router-vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-vitest-cypress/package.json b/jsx-router-vitest-cypress/package.json index d1537ef2..165aaef4 100644 --- a/jsx-router-vitest-cypress/package.json +++ b/jsx-router-vitest-cypress/package.json @@ -12,17 +12,17 @@ "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-router-vitest-nightwatch/.vscode/extensions.json b/jsx-router-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-router-vitest-nightwatch/.vscode/extensions.json +++ b/jsx-router-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-router-vitest-nightwatch/README.md b/jsx-router-vitest-nightwatch/README.md index f3d908aa..7eaf52a2 100644 --- a/jsx-router-vitest-nightwatch/README.md +++ b/jsx-router-vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/jsx-router-vitest-nightwatch/package.json b/jsx-router-vitest-nightwatch/package.json index f84eb747..bed3f5c9 100644 --- a/jsx-router-vitest-nightwatch/package.json +++ b/jsx-router-vitest-nightwatch/package.json @@ -11,21 +11,21 @@ "test:e2e": "nightwatch tests/e2e/*" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/jsx-router-vitest-playwright/.vscode/extensions.json b/jsx-router-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-router-vitest-playwright/.vscode/extensions.json +++ b/jsx-router-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-router-vitest-playwright/README.md b/jsx-router-vitest-playwright/README.md index 963a8184..7cca637b 100644 --- a/jsx-router-vitest-playwright/README.md +++ b/jsx-router-vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-vitest-playwright/package.json b/jsx-router-vitest-playwright/package.json index 1acd96b3..d215d009 100644 --- a/jsx-router-vitest-playwright/package.json +++ b/jsx-router-vitest-playwright/package.json @@ -11,16 +11,16 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-router-vitest/.vscode/extensions.json b/jsx-router-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-vitest/.vscode/extensions.json +++ b/jsx-router-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-vitest/README.md b/jsx-router-vitest/README.md index c2aa1a5c..e642e03b 100644 --- a/jsx-router-vitest/README.md +++ b/jsx-router-vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router-vitest/package.json b/jsx-router-vitest/package.json index 2c8c3ffb..0ebe3e73 100644 --- a/jsx-router-vitest/package.json +++ b/jsx-router-vitest/package.json @@ -10,15 +10,15 @@ "test:unit": "vitest" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-router-with-tests/.vscode/extensions.json b/jsx-router-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router-with-tests/.vscode/extensions.json +++ b/jsx-router-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router-with-tests/README.md b/jsx-router-with-tests/README.md index 9761cca4..910d0dbd 100644 --- a/jsx-router-with-tests/README.md +++ b/jsx-router-with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/jsx-router-with-tests/cypress.config.js b/jsx-router-with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/jsx-router-with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/jsx-router-with-tests/cypress/e2e/example.cy.js b/jsx-router-with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/jsx-router-with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/jsx-router-with-tests/cypress/e2e/jsconfig.json b/jsx-router-with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/jsx-router-with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/jsx-router-with-tests/cypress/fixtures/example.json b/jsx-router-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/jsx-router-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/jsx-router-with-tests/cypress/support/commands.js b/jsx-router-with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/jsx-router-with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/jsx-router-with-tests/cypress/support/e2e.js b/jsx-router-with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/jsx-router-with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/jsx-router-with-tests/package.json b/jsx-router-with-tests/package.json index 1a7f6f25..dc7705da 100644 --- a/jsx-router-with-tests/package.json +++ b/jsx-router-with-tests/package.json @@ -6,23 +6,15 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5" } } diff --git a/jsx-router-with-tests/src/components/__tests__/HelloWorld.spec.js b/jsx-router-with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/jsx-router-with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/jsx-router-with-tests/vitest.config.js b/jsx-router-with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/jsx-router-with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/jsx-router/.vscode/extensions.json b/jsx-router/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-router/.vscode/extensions.json +++ b/jsx-router/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-router/README.md b/jsx-router/README.md index ffa39006..3ef2ceea 100644 --- a/jsx-router/README.md +++ b/jsx-router/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-router/package.json b/jsx-router/package.json index 1851f2b5..bb7175a7 100644 --- a/jsx-router/package.json +++ b/jsx-router/package.json @@ -9,12 +9,12 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/jsx-vitest-cypress/.vscode/extensions.json b/jsx-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-vitest-cypress/.vscode/extensions.json +++ b/jsx-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-vitest-cypress/README.md b/jsx-vitest-cypress/README.md index 2d212b64..6ab242e2 100644 --- a/jsx-vitest-cypress/README.md +++ b/jsx-vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-vitest-cypress/package.json b/jsx-vitest-cypress/package.json index 257b693e..7de5ecba 100644 --- a/jsx-vitest-cypress/package.json +++ b/jsx-vitest-cypress/package.json @@ -12,16 +12,16 @@ "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-vitest-nightwatch/.vscode/extensions.json b/jsx-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/jsx-vitest-nightwatch/.vscode/extensions.json +++ b/jsx-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/jsx-vitest-nightwatch/README.md b/jsx-vitest-nightwatch/README.md index 4f2428b0..0e433327 100644 --- a/jsx-vitest-nightwatch/README.md +++ b/jsx-vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/jsx-vitest-nightwatch/package.json b/jsx-vitest-nightwatch/package.json index dfba1b64..e6e77a39 100644 --- a/jsx-vitest-nightwatch/package.json +++ b/jsx-vitest-nightwatch/package.json @@ -11,20 +11,20 @@ "test:e2e": "nightwatch tests/e2e/*" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/jsx-vitest-playwright/.vscode/extensions.json b/jsx-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/jsx-vitest-playwright/.vscode/extensions.json +++ b/jsx-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/jsx-vitest-playwright/README.md b/jsx-vitest-playwright/README.md index 3e52f66f..93807ee6 100644 --- a/jsx-vitest-playwright/README.md +++ b/jsx-vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-vitest-playwright/package.json b/jsx-vitest-playwright/package.json index 78d9a226..f08e3e1b 100644 --- a/jsx-vitest-playwright/package.json +++ b/jsx-vitest-playwright/package.json @@ -11,15 +11,15 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-vitest/.vscode/extensions.json b/jsx-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-vitest/.vscode/extensions.json +++ b/jsx-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-vitest/README.md b/jsx-vitest/README.md index bb1f0cc2..40238037 100644 --- a/jsx-vitest/README.md +++ b/jsx-vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx-vitest/package.json b/jsx-vitest/package.json index c2929e0c..79537016 100644 --- a/jsx-vitest/package.json +++ b/jsx-vitest/package.json @@ -10,14 +10,14 @@ "test:unit": "vitest" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/jsx-with-tests/.vscode/extensions.json b/jsx-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx-with-tests/.vscode/extensions.json +++ b/jsx-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx-with-tests/README.md b/jsx-with-tests/README.md index ed2ecdbe..a48761fb 100644 --- a/jsx-with-tests/README.md +++ b/jsx-with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/jsx-with-tests/cypress.config.js b/jsx-with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/jsx-with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/jsx-with-tests/cypress/e2e/example.cy.js b/jsx-with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/jsx-with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/jsx-with-tests/cypress/e2e/jsconfig.json b/jsx-with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/jsx-with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/jsx-with-tests/cypress/fixtures/example.json b/jsx-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/jsx-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/jsx-with-tests/cypress/support/commands.js b/jsx-with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/jsx-with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/jsx-with-tests/cypress/support/e2e.js b/jsx-with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/jsx-with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/jsx-with-tests/package.json b/jsx-with-tests/package.json index 05ab90de..06d2fb20 100644 --- a/jsx-with-tests/package.json +++ b/jsx-with-tests/package.json @@ -6,22 +6,14 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5" } } diff --git a/jsx-with-tests/src/components/__tests__/HelloWorld.spec.js b/jsx-with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/jsx-with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/jsx-with-tests/vitest.config.js b/jsx-with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/jsx-with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/jsx/.vscode/extensions.json b/jsx/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/jsx/.vscode/extensions.json +++ b/jsx/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/jsx/README.md b/jsx/README.md index a6df1922..8651e2a6 100644 --- a/jsx/README.md +++ b/jsx/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/jsx/package.json b/jsx/package.json index cbfe6915..3a526dd2 100644 --- a/jsx/package.json +++ b/jsx/package.json @@ -9,11 +9,11 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/nightwatch/.vscode/extensions.json b/nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/nightwatch/.vscode/extensions.json +++ b/nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/nightwatch/README.md b/nightwatch/README.md index 8bb6d1e2..31f34138 100644 --- a/nightwatch/README.md +++ b/nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/nightwatch/package.json b/nightwatch/package.json index 5f8f9123..073cf950 100644 --- a/nightwatch/package.json +++ b/nightwatch/package.json @@ -11,17 +11,17 @@ "test:unit": "nightwatch src/**/__tests__/*" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/pinia-cypress/.vscode/extensions.json b/pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/pinia-cypress/.vscode/extensions.json +++ b/pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/pinia-cypress/README.md b/pinia-cypress/README.md index 29d72fbc..bcae7bb4 100644 --- a/pinia-cypress/README.md +++ b/pinia-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/pinia-cypress/package.json b/pinia-cypress/package.json index 4c550ce9..acbc86ab 100644 --- a/pinia-cypress/package.json +++ b/pinia-cypress/package.json @@ -14,12 +14,12 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "cypress": "^13.6.3", + "@vitejs/plugin-vue": "^5.0.4", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/pinia-nightwatch/.vscode/extensions.json b/pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/pinia-nightwatch/.vscode/extensions.json +++ b/pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/pinia-nightwatch/README.md b/pinia-nightwatch/README.md index cd3747bc..2383893e 100644 --- a/pinia-nightwatch/README.md +++ b/pinia-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/pinia-nightwatch/package.json b/pinia-nightwatch/package.json index 6368b1fa..52925cb6 100644 --- a/pinia-nightwatch/package.json +++ b/pinia-nightwatch/package.json @@ -12,17 +12,17 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/pinia-playwright/.vscode/extensions.json b/pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/pinia-playwright/.vscode/extensions.json +++ b/pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/pinia-playwright/README.md b/pinia-playwright/README.md index 25c7aee9..d6933c49 100644 --- a/pinia-playwright/README.md +++ b/pinia-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/pinia-playwright/package.json b/pinia-playwright/package.json index 49f6db94..ce13dc07 100644 --- a/pinia-playwright/package.json +++ b/pinia-playwright/package.json @@ -11,11 +11,11 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/pinia-vitest-cypress/.vscode/extensions.json b/pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/pinia-vitest-cypress/.vscode/extensions.json +++ b/pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/pinia-vitest-cypress/README.md b/pinia-vitest-cypress/README.md index 01c890d9..aa41fff5 100644 --- a/pinia-vitest-cypress/README.md +++ b/pinia-vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/pinia-vitest-cypress/package.json b/pinia-vitest-cypress/package.json index c816e7c5..c4c834ab 100644 --- a/pinia-vitest-cypress/package.json +++ b/pinia-vitest-cypress/package.json @@ -13,15 +13,15 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/pinia-vitest-nightwatch/.vscode/extensions.json b/pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/pinia-vitest-nightwatch/.vscode/extensions.json +++ b/pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/pinia-vitest-nightwatch/README.md b/pinia-vitest-nightwatch/README.md index b0789652..10b92038 100644 --- a/pinia-vitest-nightwatch/README.md +++ b/pinia-vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/pinia-vitest-nightwatch/package.json b/pinia-vitest-nightwatch/package.json index 0cb0f394..860ba7af 100644 --- a/pinia-vitest-nightwatch/package.json +++ b/pinia-vitest-nightwatch/package.json @@ -12,19 +12,19 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/pinia-vitest-playwright/.vscode/extensions.json b/pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/pinia-vitest-playwright/.vscode/extensions.json +++ b/pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/pinia-vitest-playwright/README.md b/pinia-vitest-playwright/README.md index 18670b1c..248896b1 100644 --- a/pinia-vitest-playwright/README.md +++ b/pinia-vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/pinia-vitest-playwright/package.json b/pinia-vitest-playwright/package.json index 08aea6c3..8e2db9fa 100644 --- a/pinia-vitest-playwright/package.json +++ b/pinia-vitest-playwright/package.json @@ -12,14 +12,14 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/pinia-vitest/.vscode/extensions.json b/pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/pinia-vitest/.vscode/extensions.json +++ b/pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/pinia-vitest/README.md b/pinia-vitest/README.md index 366e7cd1..c8674336 100644 --- a/pinia-vitest/README.md +++ b/pinia-vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/pinia-vitest/package.json b/pinia-vitest/package.json index 6ce40d43..a5b66236 100644 --- a/pinia-vitest/package.json +++ b/pinia-vitest/package.json @@ -11,13 +11,13 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/pinia-with-tests/.vscode/extensions.json b/pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/pinia-with-tests/.vscode/extensions.json +++ b/pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/pinia-with-tests/README.md b/pinia-with-tests/README.md index f327a165..3c6f4fc4 100644 --- a/pinia-with-tests/README.md +++ b/pinia-with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/pinia-with-tests/cypress.config.js b/pinia-with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/pinia-with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/pinia-with-tests/cypress/e2e/example.cy.js b/pinia-with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/pinia-with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/pinia-with-tests/cypress/e2e/jsconfig.json b/pinia-with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/pinia-with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/pinia-with-tests/cypress/fixtures/example.json b/pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/pinia-with-tests/cypress/support/commands.js b/pinia-with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/pinia-with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/pinia-with-tests/cypress/support/e2e.js b/pinia-with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/pinia-with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/pinia-with-tests/package.json b/pinia-with-tests/package.json index 9462f4f7..d95a7c1b 100644 --- a/pinia-with-tests/package.json +++ b/pinia-with-tests/package.json @@ -6,22 +6,14 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/pinia-with-tests/src/components/__tests__/HelloWorld.spec.js b/pinia-with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/pinia-with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/pinia-with-tests/vitest.config.js b/pinia-with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/pinia-with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/pinia/.vscode/extensions.json b/pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/pinia/.vscode/extensions.json +++ b/pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/pinia/README.md b/pinia/README.md index f9e2c8ef..5776604e 100644 --- a/pinia/README.md +++ b/pinia/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/pinia/package.json b/pinia/package.json index 9b6ab20c..1d05496a 100644 --- a/pinia/package.json +++ b/pinia/package.json @@ -10,10 +10,10 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/playwright/.vscode/extensions.json b/playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/playwright/.vscode/extensions.json +++ b/playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/playwright/README.md b/playwright/README.md index 0b67eaf3..a57705be 100644 --- a/playwright/README.md +++ b/playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/playwright/package.json b/playwright/package.json index 270f8e93..abf8e328 100644 --- a/playwright/package.json +++ b/playwright/package.json @@ -10,11 +10,11 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4f2b1879..e08735e1 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -9,265 +9,281 @@ importers: cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) default: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) + + devtools: + dependencies: + vue: + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) + devDependencies: + '@vitejs/plugin-vue': + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) + vite: + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) + vite-plugin-vue-devtools: + specifier: ^7.0.16 + version: 7.0.16(vite@5.1.5)(vue@3.4.21) jsx: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) jsx-pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) jsx-pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -275,399 +291,384 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) jsx-router-pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router-pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router-pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) jsx-router-pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router-pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -675,203 +676,188 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-router-vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -879,166 +865,151 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-router-with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) jsx-vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -1046,285 +1017,270 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) jsx-with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + version: 3.1.0(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -1332,360 +1288,345 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) router-pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router-pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router-pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) router-pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router-pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -1693,185 +1634,170 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) router-vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -1879,497 +1805,482 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) router-with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) typescript: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -2378,17 +2289,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -2396,29 +2307,29 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -2427,57 +2338,57 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -2485,66 +2396,66 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -2552,17 +2463,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -2570,452 +2481,434 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -3024,17 +2917,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -3042,32 +2935,32 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -3076,60 +2969,60 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -3137,69 +3030,69 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -3207,17 +3100,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -3225,127 +3118,109 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -3354,17 +3229,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -3372,29 +3247,29 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -3403,57 +3278,57 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -3461,66 +3336,66 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -3528,17 +3403,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -3546,81 +3421,63 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-router-with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -3629,17 +3486,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -3647,26 +3504,26 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -3675,54 +3532,54 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -3730,63 +3587,63 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -3794,17 +3651,17 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -3812,299 +3669,281 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-jsx-with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vitejs/plugin-vue-jsx': specifier: ^3.1.0 - version: 3.1.0(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 3.1.0(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -4113,14 +3952,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -4128,29 +3967,29 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -4159,54 +3998,54 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -4214,63 +4053,63 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -4278,14 +4117,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -4293,425 +4132,407 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-vitest: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -4720,14 +4541,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -4735,32 +4556,32 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-vitest-cypress: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -4769,57 +4590,57 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-vitest-nightwatch: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -4827,66 +4648,66 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-vitest-playwright: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -4894,14 +4715,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -4909,121 +4730,103 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-pinia-with-tests: dependencies: pinia: specifier: ^2.1.7 - version: 2.1.7(typescript@5.3.3)(vue@3.4.15) + version: 2.1.7(typescript@5.4.2)(vue@3.4.21) vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -5032,14 +4835,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -5047,29 +4850,29 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -5078,54 +4881,54 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -5133,63 +4936,63 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -5197,14 +5000,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -5212,78 +5015,60 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-router-with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) vue-router: - specifier: ^4.2.5 - version: 4.2.5(vue@3.4.15) + specifier: ^4.3.0 + version: 4.3.0(vue@3.4.21) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -5292,14 +5077,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -5307,26 +5092,26 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 @@ -5335,51 +5120,51 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 start-server-and-test: specifier: ^2.0.3 version: 2.0.3 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -5387,60 +5172,60 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 @@ -5448,14 +5233,14 @@ importers: specifier: ^21.1.6 version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 @@ -5463,107 +5248,89 @@ importers: specifier: ^24.0.0 version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) typescript-with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@tsconfig/node20': specifier: ^20.1.2 version: 20.1.2 - '@types/jsdom': - specifier: ^21.1.6 - version: 21.1.6 '@types/node': - specifier: ^20.11.10 - version: 20.11.10 + specifier: ^20.11.25 + version: 20.11.25 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/tsconfig': specifier: ^0.5.1 version: 0.5.1 - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 npm-run-all2: - specifier: ^6.1.1 - version: 6.1.1 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^6.1.2 + version: 6.1.2 typescript: - specifier: ~5.3.0 - version: 5.3.3 + specifier: ~5.4.0 + version: 5.4.2 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vue-tsc: - specifier: ^1.8.27 - version: 1.8.27(typescript@5.3.3) + specifier: ^2.0.6 + version: 2.0.6(typescript@5.4.2) vitest: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vitest-cypress: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) cypress: - specifier: ^13.6.3 - version: 13.6.3 + specifier: ^13.6.6 + version: 13.6.6 jsdom: specifier: ^24.0.0 version: 24.0.0 @@ -5571,104 +5338,89 @@ importers: specifier: ^2.0.3 version: 2.0.3 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vitest-nightwatch: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@nightwatch/vue': specifier: ^3.1.0 - version: 3.1.0(@types/node@20.11.10)(vue@3.4.15) + version: 3.1.0(@types/node@20.11.25)(vue@3.4.21) '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) chromedriver: - specifier: ^121.0.0 - version: 121.0.0 + specifier: ^122.0.4 + version: 122.0.4 geckodriver: - specifier: ^4.3.1 - version: 4.3.1 + specifier: ^4.3.3 + version: 4.3.3 jsdom: specifier: ^24.0.0 version: 24.0.0 nightwatch: - specifier: ^3.4.0 - version: 3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1) + specifier: ^3.4.1 + version: 3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3) ts-node: specifier: ^10.9.2 - version: 10.9.2(@types/node@20.11.10)(typescript@5.3.3) + version: 10.9.2(@types/node@20.11.25)(typescript@5.4.2) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vite-plugin-nightwatch: specifier: ^0.4.6 - version: 0.4.6(vue@3.4.15) + version: 0.4.6(vue@3.4.21) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) vitest-playwright: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@playwright/test': - specifier: ^1.41.1 - version: 1.41.1 + specifier: ^1.42.1 + version: 1.42.1 '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) '@vue/test-utils': specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) + version: 2.4.4(vue@3.4.21) jsdom: specifier: ^24.0.0 version: 24.0.0 vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^1.3.1 + version: 1.3.1(@types/node@20.11.25)(jsdom@24.0.0) with-tests: dependencies: vue: - specifier: ^3.4.15 - version: 3.4.15(typescript@5.3.3) + specifier: ^3.4.21 + version: 3.4.21(typescript@5.4.2) devDependencies: '@vitejs/plugin-vue': - specifier: ^5.0.3 - version: 5.0.3(vite@5.0.12)(vue@3.4.15) - '@vue/test-utils': - specifier: ^2.4.4 - version: 2.4.4(vue@3.4.15) - cypress: - specifier: ^13.6.3 - version: 13.6.3 - jsdom: - specifier: ^24.0.0 - version: 24.0.0 - start-server-and-test: - specifier: ^2.0.3 - version: 2.0.3 + specifier: ^5.0.4 + version: 5.0.4(vite@5.1.5)(vue@3.4.21) vite: - specifier: ^5.0.11 - version: 5.0.12(@types/node@20.11.10) - vitest: - specifier: ^1.2.2 - version: 1.2.2(@types/node@20.11.10)(jsdom@24.0.0) + specifier: ^5.1.5 + version: 5.1.5(@types/node@20.11.25) packages: @@ -5680,6 +5432,10 @@ packages: '@jridgewell/trace-mapping': 0.3.18 dev: true + /@antfu/utils@0.7.7: + resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==} + dev: true + /@asamuzakjp/dom-selector@2.0.2: resolution: {integrity: sha512-x1KXOatwofR6ZAYzXRBL5wrdV0vwNxlTCK9NCuLqAzQYARqGcvFwiJA6A1ERuh+dgeA4Dxm3JBYictIes+SqUQ==} dependencies: @@ -5688,10 +5444,6 @@ packages: is-potential-custom-element-name: 1.0.1 dev: true - /@assemblyscript/loader@0.10.1: - resolution: {integrity: sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==} - dev: true - /@babel/code-frame@7.22.10: resolution: {integrity: sha512-/KKIMG4UEL35WmI9OlvMhurwtytjvXoFcGNrOvyG9zIzA8YmPjVtIZUf7b05+TPO7G7/GEmLHDaoCgACHl9hhA==} engines: {node: '>=6.9.0'} @@ -5723,7 +5475,7 @@ packages: '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5) '@babel/helpers': 7.23.5 - '@babel/parser': 7.23.5 + '@babel/parser': 7.23.9 '@babel/template': 7.22.15 '@babel/traverse': 7.23.5 '@babel/types': 7.23.5 @@ -5792,6 +5544,24 @@ packages: semver: 6.3.1 dev: true + /@babel/helper-create-class-features-plugin@7.24.0(@babel/core@7.23.5): + resolution: {integrity: sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-annotate-as-pure': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 + '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.5) + '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.6 + semver: 6.3.1 + dev: true + /@babel/helper-environment-visitor@7.22.20: resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} @@ -5872,6 +5642,11 @@ packages: engines: {node: '>=6.9.0'} dev: true + /@babel/helper-plugin-utils@7.24.0: + resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==} + engines: {node: '>=6.9.0'} + dev: true + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.5): resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} @@ -5980,6 +5755,47 @@ packages: dependencies: '@babel/types': 7.23.5 + /@babel/plugin-proposal-decorators@7.24.0(@babel/core@7.23.5): + resolution: {integrity: sha512-LiT1RqZWeij7X+wGxCoYh3/3b8nVOX6/7BZ9wiQgAIyjoeQWdROaodJCgT+dwtbjHaz0r7bEbHJzjSbVfcOyjQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-create-class-features-plugin': 7.24.0(@babel/core@7.23.5) + '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-decorators': 7.24.0(@babel/core@7.23.5) + dev: true + + /@babel/plugin-syntax-decorators@7.24.0(@babel/core@7.23.5): + resolution: {integrity: sha512-MXW3pQCu9gUiVGzqkGqsgiINDVYXoAnrY8FYF/rmb+OfufNF0zHMpHPN4ulRrinxYT8Vk/aZJxYqOKsDECjKAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-plugin-utils': 7.24.0 + dev: true + + /@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.5): + resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5): + resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} @@ -6653,14 +6469,14 @@ packages: archiver: 5.3.1 dev: true - /@nightwatch/vue@3.1.0(@types/node@20.11.10)(vue@3.4.15): + /@nightwatch/vue@3.1.0(@types/node@20.11.25)(vue@3.4.21): resolution: {integrity: sha512-ifHlQ81h8ys/au2EvRgV+hZztg8Liy+AGlvIYE0nJYsafjUl3Fr5Pl+stlr8BUC+/iVgvmqreR6KubT92H9Whg==} dependencies: '@nightwatch/esbuild-utils': 0.2.1 - '@vitejs/plugin-vue': 4.5.2(vite@4.5.0)(vue@3.4.15) + '@vitejs/plugin-vue': 4.5.2(vite@4.5.0)(vue@3.4.21) get-port: 5.1.1 - vite: 4.5.0(@types/node@20.11.10) - vite-plugin-nightwatch: 0.4.6(vue@3.4.15) + vite: 4.5.0(@types/node@20.11.25) + vite-plugin-nightwatch: 0.4.6(vue@3.4.21) optionalDependencies: '@esbuild/android-arm': 0.17.19 transitivePeerDependencies: @@ -6682,12 +6498,30 @@ packages: resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} dev: true - /@playwright/test@1.41.1: - resolution: {integrity: sha512-9g8EWTjiQ9yFBXc6HjCWe41msLpxEX0KhmfmPl9RPLJdfzL4F0lg2BdJ91O9azFdl11y1pmpwdjBiSxvqc+btw==} + /@playwright/test@1.42.1: + resolution: {integrity: sha512-Gq9rmS54mjBL/7/MvBaNOBwbfnh7beHvS6oS4srqXFcQHpQCV1+c8JXWE8VLPyRDhgS3H8x8A7hztqI9VnwrAQ==} engines: {node: '>=16'} hasBin: true dependencies: - playwright: 1.41.1 + playwright: 1.42.1 + dev: true + + /@polka/url@1.0.0-next.25: + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + dev: true + + /@rollup/pluginutils@5.1.0: + resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + '@types/estree': 1.0.5 + estree-walker: 2.0.2 + picomatch: 2.3.1 dev: true /@rollup/rollup-android-arm-eabi@4.6.1: @@ -6838,6 +6672,10 @@ packages: resolution: {integrity: sha512-kIhULpw9TrGYnHp/8VfdcneIcxKnLixmADtukQRtJUmsVlMg0niMkwV0xZmi8hqa57xqilIHjWFA0GKvEjVU5g==} dev: true + /@tootallnate/quickjs-emscripten@0.23.0: + resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} + dev: true + /@tsconfig/node10@1.0.9: resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} dev: true @@ -6869,7 +6707,7 @@ packages: /@types/jsdom@21.1.6: resolution: {integrity: sha512-/7kkMsC+/kMs7gAYmmBR9P0vGTnOoLhQhyhQJSlXGI5bzTHp6xdo0TtKWQAsz6pmSAeVqKSbqeyP6hytqr9FDw==} dependencies: - '@types/node': 20.11.10 + '@types/node': 20.11.25 '@types/tough-cookie': 4.0.2 parse5: 7.1.2 dev: true @@ -6882,16 +6720,12 @@ packages: devtools-protocol: 0.0.1025565 dev: true - /@types/node@20.11.10: - resolution: {integrity: sha512-rZEfe/hJSGYmdfX9tvcPMYeYPW2sNl50nsw4jZmRcaG0HIAb0WYEpsB05GOb53vjqpyE9GUhlDQ4jLSoB5q9kg==} + /@types/node@20.11.25: + resolution: {integrity: sha512-TBHyJxk2b7HceLVGFcpAUjsa5zIdsPWlR6XHfyGzd0SFu+/NFgQgMAl96MSDZgQDvJAvV6BKsFOrt6zIL09JDw==} dependencies: undici-types: 5.26.5 dev: true - /@types/normalize-package-data@2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} - dev: true - /@types/selenium-webdriver@4.1.15: resolution: {integrity: sha512-oQ15G3q3EZ0dS049SB/5zx2tQkIS2kmDQWC/TSfAHJYKvXLZoUiLaPXnfSwbLP8Q5lcJeu5oYjKVSEV0t3H6Bg==} dependencies: @@ -6913,18 +6747,18 @@ packages: /@types/ws@8.5.5: resolution: {integrity: sha512-lwhs8hktwxSjf9UaZ9tG5M03PGogvFaH8gUgLNbN9HKIg0dvv6q+gkSuJ8HN4/VbyxkuLzCjlN7GquQ0gUJfIg==} dependencies: - '@types/node': 20.11.10 + '@types/node': 20.11.25 dev: true /@types/yauzl@2.10.0: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 20.11.10 + '@types/node': 20.11.25 dev: true optional: true - /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.12)(vue@3.4.15): + /@vitejs/plugin-vue-jsx@3.1.0(vite@5.1.5)(vue@3.4.21): resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -6934,66 +6768,66 @@ packages: '@babel/core': 7.23.5 '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5) '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5) - vite: 5.0.12(@types/node@20.11.10) - vue: 3.4.15(typescript@5.3.3) + vite: 5.1.5(@types/node@20.11.25) + vue: 3.4.21(typescript@5.4.2) transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue@4.5.2(vite@4.5.0)(vue@3.4.15): + /@vitejs/plugin-vue@4.5.2(vite@4.5.0)(vue@3.4.21): resolution: {integrity: sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 || ^5.0.0 vue: ^3.2.25 dependencies: - vite: 4.5.0(@types/node@20.11.10) - vue: 3.4.15(typescript@5.3.3) + vite: 4.5.0(@types/node@20.11.25) + vue: 3.4.21(typescript@5.4.2) dev: true - /@vitejs/plugin-vue@5.0.3(vite@5.0.12)(vue@3.4.15): - resolution: {integrity: sha512-b8S5dVS40rgHdDrw+DQi/xOM9ed+kSRZzfm1T74bMmBDCd8XO87NKlFYInzCtwvtWwXZvo1QxE2OSspTATWrbA==} + /@vitejs/plugin-vue@5.0.4(vite@5.1.5)(vue@3.4.21): + resolution: {integrity: sha512-WS3hevEszI6CEVEx28F8RjTX97k3KsrcY6kvTg7+Whm5y3oYvcqzVeGCU3hxSAn4uY2CLCkeokkGKpoctccilQ==} engines: {node: ^18.0.0 || >=20.0.0} peerDependencies: vite: ^5.0.0 vue: ^3.2.25 dependencies: - vite: 5.0.12(@types/node@20.11.10) - vue: 3.4.15(typescript@5.3.3) + vite: 5.1.5(@types/node@20.11.25) + vue: 3.4.21(typescript@5.4.2) dev: true - /@vitest/expect@1.2.2: - resolution: {integrity: sha512-3jpcdPAD7LwHUUiT2pZTj2U82I2Tcgg2oVPvKxhn6mDI2On6tfvPQTjAI4628GUGDZrCm4Zna9iQHm5cEexOAg==} + /@vitest/expect@1.3.1: + resolution: {integrity: sha512-xofQFwIzfdmLLlHa6ag0dPV8YsnKOCP1KdAeVVh34vSjN2dcUiXYCD9htu/9eM7t8Xln4v03U9HLxLpPlsXdZw==} dependencies: - '@vitest/spy': 1.2.2 - '@vitest/utils': 1.2.2 + '@vitest/spy': 1.3.1 + '@vitest/utils': 1.3.1 chai: 4.3.10 dev: true - /@vitest/runner@1.2.2: - resolution: {integrity: sha512-JctG7QZ4LSDXr5CsUweFgcpEvrcxOV1Gft7uHrvkQ+fsAVylmWQvnaAr/HDp3LAH1fztGMQZugIheTWjaGzYIg==} + /@vitest/runner@1.3.1: + resolution: {integrity: sha512-5FzF9c3jG/z5bgCnjr8j9LNq/9OxV2uEBAITOXfoe3rdZJTdO7jzThth7FXv/6b+kdY65tpRQB7WaKhNZwX+Kg==} dependencies: - '@vitest/utils': 1.2.2 + '@vitest/utils': 1.3.1 p-limit: 5.0.0 pathe: 1.1.1 dev: true - /@vitest/snapshot@1.2.2: - resolution: {integrity: sha512-SmGY4saEw1+bwE1th6S/cZmPxz/Q4JWsl7LvbQIky2tKE35US4gd0Mjzqfr84/4OD0tikGWaWdMja/nWL5NIPA==} + /@vitest/snapshot@1.3.1: + resolution: {integrity: sha512-EF++BZbt6RZmOlE3SuTPu/NfwBF6q4ABS37HHXzs2LUVPBLx2QoY/K0fKpRChSo8eLiuxcbCVfqKgx/dplCDuQ==} dependencies: magic-string: 0.30.5 pathe: 1.1.1 pretty-format: 29.7.0 dev: true - /@vitest/spy@1.2.2: - resolution: {integrity: sha512-k9Gcahssw8d7X3pSLq3e3XEu/0L78mUkCjivUqCQeXJm9clfXR/Td8+AP+VC1O6fKPIDLcHDTAmBOINVuv6+7g==} + /@vitest/spy@1.3.1: + resolution: {integrity: sha512-xAcW+S099ylC9VLU7eZfdT9myV67Nor9w9zhf0mGCYJSO+zM2839tOeROTdikOi/8Qeusffvxb/MyBSOja1Uig==} dependencies: tinyspy: 2.2.0 dev: true - /@vitest/utils@1.2.2: - resolution: {integrity: sha512-WKITBHLsBHlpjnDQahr+XK6RE7MiAsgrIkr0pGhQ9ygoxBfUeG0lUG5iLlzqjmKSlBv3+j5EGsriBzh+C3Tq9g==} + /@vitest/utils@1.3.1: + resolution: {integrity: sha512-d3Waie/299qqRyHTm2DjADeTaNdNSVsnwHPWrs20JMpjh6eiVq7ggggweO8rc4arhf6rRkWuHKwvxGvejUXZZQ==} dependencies: diff-sequences: 29.6.3 estree-walker: 3.0.3 @@ -7001,22 +6835,22 @@ packages: pretty-format: 29.7.0 dev: true - /@volar/language-core@1.11.1: - resolution: {integrity: sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==} + /@volar/language-core@2.1.2: + resolution: {integrity: sha512-5qsDp0Gf6fE09UWCeK7bkVn6NxMwC9OqFWQkMMkeej8h8XjyABPdRygC2RCrqDrfVdGijqlMQeXs6yRS+vfZYA==} dependencies: - '@volar/source-map': 1.11.1 + '@volar/source-map': 2.1.2 dev: true - /@volar/source-map@1.11.1: - resolution: {integrity: sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==} + /@volar/source-map@2.1.2: + resolution: {integrity: sha512-yFJqsuLm1OaWrsz9E3yd3bJcYIlHqdZ8MbmIoZLrAzMYQDcoF26/INIhgziEXSdyHc8xd7rd/tJdSnUyh0gH4Q==} dependencies: - muggle-string: 0.3.1 + muggle-string: 0.4.1 dev: true - /@volar/typescript@1.11.1: - resolution: {integrity: sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==} + /@volar/typescript@2.1.2: + resolution: {integrity: sha512-lhTancZqamvaLvoz0u/uth8dpudENNt2LFZOWCw9JZiX14xRFhdhfzmphiCRb7am9E6qAJSbdS/gMt1utXAoHQ==} dependencies: - '@volar/language-core': 1.11.1 + '@volar/language-core': 2.1.2 path-browserify: 1.0.1 dev: true @@ -7043,15 +6877,6 @@ packages: - supports-color dev: true - /@vue/compiler-core@3.3.11: - resolution: {integrity: sha512-h97/TGWBilnLuRaj58sxNrsUU66fwdRKLOLQ9N/5iNDfp+DZhYH9Obhe0bXxhedl8fjAgpRANpiZfbgWyruQ0w==} - dependencies: - '@babel/parser': 7.23.5 - '@vue/shared': 3.3.11 - estree-walker: 2.0.2 - source-map-js: 1.0.2 - dev: true - /@vue/compiler-core@3.4.15: resolution: {integrity: sha512-XcJQVOaxTKCnth1vCxEChteGuwG6wqnUHxAm1DO3gCz0+uXKaJNx8/digSz4dLALCy8n2lKq24jSUs8segoqIw==} dependencies: @@ -7060,98 +6885,143 @@ packages: entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.0.2 + dev: true - /@vue/compiler-dom@3.3.11: - resolution: {integrity: sha512-zoAiUIqSKqAJ81WhfPXYmFGwDRuO+loqLxvXmfUdR5fOitPoUiIeFI9cTTyv9MU5O1+ZZglJVTusWzy+wfk5hw==} + /@vue/compiler-core@3.4.21: + resolution: {integrity: sha512-MjXawxZf2SbZszLPYxaFCjxfibYrzr3eYbKxwpLR9EQN+oaziSu3qKVbwBERj1IFIB8OLUewxB5m/BFzi613og==} dependencies: - '@vue/compiler-core': 3.3.11 - '@vue/shared': 3.3.11 - dev: true + '@babel/parser': 7.23.9 + '@vue/shared': 3.4.21 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.0.2 /@vue/compiler-dom@3.4.15: resolution: {integrity: sha512-wox0aasVV74zoXyblarOM3AZQz/Z+OunYcIHe1OsGclCHt8RsRm04DObjefaI82u6XDzv+qGWZ24tIsRAIi5MQ==} dependencies: '@vue/compiler-core': 3.4.15 '@vue/shared': 3.4.15 + dev: true - /@vue/compiler-sfc@3.4.15: - resolution: {integrity: sha512-LCn5M6QpkpFsh3GQvs2mJUOAlBQcCco8D60Bcqmf3O3w5a+KWS5GvYbrrJBkgvL1BDnTp+e8q0lXCLgHhKguBA==} + /@vue/compiler-dom@3.4.21: + resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==} + dependencies: + '@vue/compiler-core': 3.4.21 + '@vue/shared': 3.4.21 + + /@vue/compiler-sfc@3.4.21: + resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==} dependencies: '@babel/parser': 7.23.9 - '@vue/compiler-core': 3.4.15 - '@vue/compiler-dom': 3.4.15 - '@vue/compiler-ssr': 3.4.15 - '@vue/shared': 3.4.15 + '@vue/compiler-core': 3.4.21 + '@vue/compiler-dom': 3.4.21 + '@vue/compiler-ssr': 3.4.21 + '@vue/shared': 3.4.21 estree-walker: 2.0.2 - magic-string: 0.30.5 - postcss: 8.4.33 + magic-string: 0.30.8 + postcss: 8.4.35 source-map-js: 1.0.2 - /@vue/compiler-ssr@3.4.15: - resolution: {integrity: sha512-1jdeQyiGznr8gjFDadVmOJqZiLNSsMa5ZgqavkPZ8O2wjHv0tVuAEsw5hTdUoUW4232vpBbL/wJhzVW/JwY1Uw==} + /@vue/compiler-ssr@3.4.21: + resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==} dependencies: - '@vue/compiler-dom': 3.4.15 - '@vue/shared': 3.4.15 + '@vue/compiler-dom': 3.4.21 + '@vue/shared': 3.4.21 /@vue/devtools-api@6.5.0: resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==} dev: false - /@vue/language-core@1.8.27(typescript@5.3.3): - resolution: {integrity: sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==} + /@vue/devtools-api@6.6.1: + resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==} + dev: false + + /@vue/devtools-core@7.0.16(vite@5.1.5)(vue@3.4.21): + resolution: {integrity: sha512-GGHZSvQcVyBYzkBOOBwA+xKtG2DCA7InFxjbaTfUERRDPFWFOOBdf1xe1FtiZRkU+vHnF8NqKnz+78HpnzD02w==} + dependencies: + '@vue/devtools-kit': 7.0.16(vue@3.4.21) + '@vue/devtools-shared': 7.0.16 + mitt: 3.0.1 + nanoid: 3.3.7 + pathe: 1.1.2 + vite-hot-client: 0.2.3(vite@5.1.5) + transitivePeerDependencies: + - vite + - vue + dev: true + + /@vue/devtools-kit@7.0.16(vue@3.4.21): + resolution: {integrity: sha512-IA8SSGiZbNgOi4wLT3mRvd71Q9KE0KvMfGk6haa2GZ6bL2K/xMA8Fvvj3o1maspfUXrGcCXutaqbLqbGx/espQ==} + peerDependencies: + vue: ^3.0.0 + dependencies: + '@vue/devtools-shared': 7.0.16 + hookable: 5.5.3 + mitt: 3.0.1 + perfect-debounce: 1.0.0 + speakingurl: 14.0.1 + vue: 3.4.21(typescript@5.4.2) + dev: true + + /@vue/devtools-shared@7.0.16: + resolution: {integrity: sha512-Lew4FrGjDjmanaUWSueNE1Rre83k7jQpttc17MaoVw0eARWU5DgZ1F/g9GNUMZXVjbP9rwE+LL3gd9XfXCfkvA==} + dependencies: + rfdc: 1.3.1 + dev: true + + /@vue/language-core@2.0.6(typescript@5.4.2): + resolution: {integrity: sha512-UzqU12tzf9XLqRO3TiWPwRNpP4fyUzE6MAfOQWQNZ4jy6a30ARRUpmODDKq6O8C4goMc2AlPqTmjOHPjHkilSg==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@volar/language-core': 1.11.1 - '@volar/source-map': 1.11.1 - '@vue/compiler-dom': 3.3.11 - '@vue/shared': 3.3.11 + '@volar/language-core': 2.1.2 + '@vue/compiler-dom': 3.4.15 + '@vue/shared': 3.4.15 computeds: 0.0.1 minimatch: 9.0.3 - muggle-string: 0.3.1 path-browserify: 1.0.1 - typescript: 5.3.3 + typescript: 5.4.2 vue-template-compiler: 2.7.14 dev: true - /@vue/reactivity@3.4.15: - resolution: {integrity: sha512-55yJh2bsff20K5O84MxSvXKPHHt17I2EomHznvFiJCAZpJTNW8IuLj1xZWMLELRhBK3kkFV/1ErZGHJfah7i7w==} + /@vue/reactivity@3.4.21: + resolution: {integrity: sha512-UhenImdc0L0/4ahGCyEzc/pZNwVgcglGy9HVzJ1Bq2Mm9qXOpP8RyNTjookw/gOCUlXSEtuZ2fUg5nrHcoqJcw==} dependencies: - '@vue/shared': 3.4.15 + '@vue/shared': 3.4.21 - /@vue/runtime-core@3.4.15: - resolution: {integrity: sha512-6E3by5m6v1AkW0McCeAyhHTw+3y17YCOKG0U0HDKDscV4Hs0kgNT5G+GCHak16jKgcCDHpI9xe5NKb8sdLCLdw==} + /@vue/runtime-core@3.4.21: + resolution: {integrity: sha512-pQthsuYzE1XcGZznTKn73G0s14eCJcjaLvp3/DKeYWoFacD9glJoqlNBxt3W2c5S40t6CCcpPf+jG01N3ULyrA==} dependencies: - '@vue/reactivity': 3.4.15 - '@vue/shared': 3.4.15 + '@vue/reactivity': 3.4.21 + '@vue/shared': 3.4.21 - /@vue/runtime-dom@3.4.15: - resolution: {integrity: sha512-EVW8D6vfFVq3V/yDKNPBFkZKGMFSvZrUQmx196o/v2tHKdwWdiZjYUBS+0Ez3+ohRyF8Njwy/6FH5gYJ75liUw==} + /@vue/runtime-dom@3.4.21: + resolution: {integrity: sha512-gvf+C9cFpevsQxbkRBS1NpU8CqxKw0ebqMvLwcGQrNpx6gqRDodqKqA+A2VZZpQ9RpK2f9yfg8VbW/EpdFUOJw==} dependencies: - '@vue/runtime-core': 3.4.15 - '@vue/shared': 3.4.15 + '@vue/runtime-core': 3.4.21 + '@vue/shared': 3.4.21 csstype: 3.1.3 - /@vue/server-renderer@3.4.15(vue@3.4.15): - resolution: {integrity: sha512-3HYzaidu9cHjrT+qGUuDhFYvF/j643bHC6uUN9BgM11DVy+pM6ATsG6uPBLnkwOgs7BpJABReLmpL3ZPAsUaqw==} + /@vue/server-renderer@3.4.21(vue@3.4.21): + resolution: {integrity: sha512-aV1gXyKSN6Rz+6kZ6kr5+Ll14YzmIbeuWe7ryJl5muJ4uwSwY/aStXTixx76TwkZFJLm1aAlA/HSWEJ4EyiMkg==} peerDependencies: - vue: 3.4.15 + vue: 3.4.21 dependencies: - '@vue/compiler-ssr': 3.4.15 - '@vue/shared': 3.4.15 - vue: 3.4.15(typescript@5.3.3) - - /@vue/shared@3.3.11: - resolution: {integrity: sha512-u2G8ZQ9IhMWTMXaWqZycnK4UthG1fA238CD+DP4Dm4WJi5hdUKKLg0RMRaRpDPNMdkTwIDkp7WtD0Rd9BH9fLw==} - dev: true + '@vue/compiler-ssr': 3.4.21 + '@vue/shared': 3.4.21 + vue: 3.4.21(typescript@5.4.2) /@vue/shared@3.4.15: resolution: {integrity: sha512-KzfPTxVaWfB+eGcGdbSf4CWdaXcGDqckoeXUh7SB3fZdEtzPCK2Vq9B/lRRL3yutax/LWITz+SwvgyOxz5V75g==} + dev: true + + /@vue/shared@3.4.21: + resolution: {integrity: sha512-PuJe7vDIi6VYSinuEbUIQgMIRZGgM8e4R+G+/dQTk0X1NEdvgvvgv7m+rfmDH1gZzyA1OjjoWskvHlfRNfQf3g==} - /@vue/test-utils@2.4.4(vue@3.4.15): + /@vue/test-utils@2.4.4(vue@3.4.21): resolution: {integrity: sha512-8jkRxz8pNhClAf4Co4ZrpAoFISdvT3nuSkUlY6Ys6rmTpw3DMWG/X3mw3gQ7QJzgCZO9f+zuE2kW57fi09MW7Q==} peerDependencies: '@vue/server-renderer': ^3.0.1 @@ -7161,7 +7031,7 @@ packages: optional: true dependencies: js-beautify: 1.14.9 - vue: 3.4.15(typescript@5.3.3) + vue: 3.4.21(typescript@5.4.2) vue-component-type-helpers: 1.8.25 dev: true @@ -7169,8 +7039,8 @@ packages: resolution: {integrity: sha512-VcZK7MvpjuTPx2w6blwnwZAu5/LgBUtejFOi3pPGQFXQN5Ela03FUtd2Qtg4yWGGissVL0dr6Ro1LfOFh+PCuQ==} dev: true - /@wdio/logger@8.24.12: - resolution: {integrity: sha512-QisOiVIWKTUCf1H7S+DOtC+gruhlpimQrUXfWMTeeh672PvAJYnTpOJDWA+BtXfsikkUYFAzAaq8SeMJk8rqKg==} + /@wdio/logger@8.28.0: + resolution: {integrity: sha512-/s6zNCqwy1hoc+K4SJypis0Ud0dlJ+urOelJFO1x0G0rwDRWyFiUP6ijTaCcFxAm29jYEcEPWijl2xkVIHwOyA==} engines: {node: ^16.13 || >=18} dependencies: chalk: 5.3.0 @@ -7199,15 +7069,6 @@ packages: hasBin: true dev: true - /agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} - dependencies: - debug: 4.3.4(supports-color@8.1.1) - transitivePeerDependencies: - - supports-color - dev: true - /agent-base@7.1.0: resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} engines: {node: '>= 14'} @@ -7371,6 +7232,13 @@ packages: resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} dev: true + /ast-types@0.13.4: + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} + dependencies: + tslib: 2.4.0 + dev: true + /astral-regex@2.0.0: resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} engines: {node: '>=8'} @@ -7435,10 +7303,46 @@ packages: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} dev: true + /bare-events@2.2.1: + resolution: {integrity: sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==} + requiresBuild: true + dev: true + optional: true + + /bare-fs@2.2.1: + resolution: {integrity: sha512-+CjmZANQDFZWy4PGbVdmALIwmt33aJg8qTkVjClU6X4WmZkTPBDxRHiBn7fpqEWEfF3AC2io++erpViAIQbSjg==} + requiresBuild: true + dependencies: + bare-events: 2.2.1 + bare-os: 2.2.0 + bare-path: 2.1.0 + streamx: 2.15.0 + dev: true + optional: true + + /bare-os@2.2.0: + resolution: {integrity: sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==} + requiresBuild: true + dev: true + optional: true + + /bare-path@2.1.0: + resolution: {integrity: sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==} + requiresBuild: true + dependencies: + bare-os: 2.2.0 + dev: true + optional: true + /base64-js@1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} dev: true + /basic-ftp@5.0.5: + resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==} + engines: {node: '>=10.0.0'} + dev: true + /bcrypt-pbkdf@1.0.2: resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} dependencies: @@ -7558,6 +7462,13 @@ packages: engines: {node: '>=0.2.0'} dev: true + /bundle-name@4.1.0: + resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==} + engines: {node: '>=18'} + dependencies: + run-applescript: 7.0.0 + dev: true + /cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -7667,8 +7578,8 @@ packages: fsevents: 2.3.3 dev: true - /chromedriver@121.0.0: - resolution: {integrity: sha512-ZIKEdZrQAfuzT/RRofjl8/EZR99ghbdBXNTOcgJMKGP6N/UL6lHUX4n6ONWBV18pDvDFfQJ0x58h5AdOaXIOMw==} + /chromedriver@122.0.4: + resolution: {integrity: sha512-MxkaWaxCqefHyh9UorGzl1F6ZNBgC7pqgT0piAysLZdw20ojSgJ62ljG8SFbhDJqBTegKbmuioa6MQ1m4Czdsg==} engines: {node: '>=18'} hasBin: true requiresBuild: true @@ -7677,7 +7588,7 @@ packages: axios: 1.6.7 compare-versions: 6.1.0 extract-zip: 2.0.1(supports-color@8.1.1) - https-proxy-agent: 5.0.1 + proxy-agent: 6.4.0 proxy-from-env: 1.1.0 tcp-port-used: 1.0.2 transitivePeerDependencies: @@ -7874,8 +7785,8 @@ packages: /csstype@3.1.3: resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} - /cypress@13.6.3: - resolution: {integrity: sha512-d/pZvgwjAyZsoyJ3FOsJT5lDsqnxQ/clMqnNc++rkHjbkkiF2h9s0JsZSyyH4QXhVFW3zPFg82jD25roFLOdZA==} + /cypress@13.6.6: + resolution: {integrity: sha512-S+2S9S94611hXimH9a3EAYt81QM913ZVA03pUmGDfLTFa5gyp85NJ8dJGSlEAEmyRsYkioS1TtnWtbv/Fzt11A==} engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} hasBin: true requiresBuild: true @@ -7936,6 +7847,11 @@ packages: engines: {node: '>= 12'} dev: true + /data-uri-to-buffer@6.0.2: + resolution: {integrity: sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==} + engines: {node: '>= 14'} + dev: true + /data-urls@5.0.0: resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} engines: {node: '>=18'} @@ -8045,6 +7961,19 @@ packages: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true + /default-browser-id@5.0.0: + resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==} + engines: {node: '>=18'} + dev: true + + /default-browser@5.2.1: + resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==} + engines: {node: '>=18'} + dependencies: + bundle-name: 4.1.0 + default-browser-id: 5.0.0 + dev: true + /defaults@1.0.4: resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: @@ -8065,6 +7994,11 @@ packages: engines: {node: '>=8'} dev: true + /define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + dev: true + /define-properties@1.2.1: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} @@ -8074,6 +8008,15 @@ packages: object-keys: 1.1.1 dev: true + /degenerator@5.0.1: + resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + engines: {node: '>= 14'} + dependencies: + ast-types: 0.13.4 + escodegen: 2.1.0 + esprima: 4.0.1 + dev: true + /delayed-stream@1.0.0: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} @@ -8192,10 +8135,8 @@ packages: hasBin: true dev: true - /error-ex@1.3.2: - resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} - dependencies: - is-arrayish: 0.2.1 + /error-stack-parser-es@0.1.1: + resolution: {integrity: sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==} dev: true /es-get-iterator@1.1.3: @@ -8497,6 +8438,29 @@ packages: engines: {node: '>=10'} dev: true + /escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + dev: true + + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} @@ -8506,6 +8470,11 @@ packages: '@types/estree': 1.0.5 dev: true + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + /event-stream@3.3.4: resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} dependencies: @@ -8518,10 +8487,6 @@ packages: through: 2.3.8 dev: true - /eventemitter-asyncresource@1.0.0: - resolution: {integrity: sha512-39F7TBIV0G7gTelxwbEqnwhp90eqCPON1k0NwNfwhgKn4Co4ybUbj2pECcXT0B3ztRKZ7Pw1JujUUgmQJHcVAQ==} - dev: true - /eventemitter2@6.4.7: resolution: {integrity: sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==} dev: true @@ -8717,6 +8682,15 @@ packages: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} dev: true + /fs-extra@11.2.0: + resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==} + engines: {node: '>=14.14'} + dependencies: + graceful-fs: 4.2.10 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + /fs-extra@9.1.0: resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} engines: {node: '>=10'} @@ -8757,10 +8731,6 @@ packages: rimraf: 2.7.1 dev: true - /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} - dev: true - /function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} dev: true @@ -8769,18 +8739,18 @@ packages: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true - /geckodriver@4.3.1: - resolution: {integrity: sha512-ol7JLsj55o5k+z7YzeSy2mdJROXMAxIa+uzr3A1yEMr5HISqQOTslE3ZeARcxR4jpAY3fxmHM+sq32qbe/eXfA==} + /geckodriver@4.3.3: + resolution: {integrity: sha512-we2c2COgxFkLVuoknJNx+ioP+7VDq0sr6SCqWHTzlA4kzIbzR0EQ1Pps34s8WrsOnQqPC8a4sZV9dRPROOrkSg==} engines: {node: ^16.13 || >=18 || >=20} hasBin: true requiresBuild: true dependencies: - '@wdio/logger': 8.24.12 + '@wdio/logger': 8.28.0 decamelize: 6.0.0 - http-proxy-agent: 7.0.0 - https-proxy-agent: 7.0.2 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.4 node-fetch: 3.3.2 - tar-fs: 3.0.4 + tar-fs: 3.0.5 unzipper: 0.10.14 which: 4.0.0 transitivePeerDependencies: @@ -8832,6 +8802,18 @@ packages: engines: {node: '>=16'} dev: true + /get-uri@6.0.3: + resolution: {integrity: sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==} + engines: {node: '>= 14'} + dependencies: + basic-ftp: 5.0.5 + data-uri-to-buffer: 6.0.2 + debug: 4.3.4(supports-color@8.1.1) + fs-extra: 11.2.0 + transitivePeerDependencies: + - supports-color + dev: true + /getos@3.2.1: resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} dependencies: @@ -8943,13 +8925,6 @@ packages: has-symbols: 1.0.3 dev: true - /has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} - engines: {node: '>= 0.4.0'} - dependencies: - function-bind: 1.1.1 - dev: true - /hasown@2.0.0: resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} engines: {node: '>= 0.4'} @@ -8957,28 +8932,13 @@ packages: function-bind: 1.1.2 dev: true - /hdr-histogram-js@2.0.3: - resolution: {integrity: sha512-Hkn78wwzWHNCp2uarhzQ2SGFLU3JY8SBDDd3TAABK4fc30wm+MuPOrg5QVFVfkKOQd6Bfz3ukJEI+q9sXEkK1g==} - dependencies: - '@assemblyscript/loader': 0.10.1 - base64-js: 1.5.1 - pako: 1.0.11 - dev: true - - /hdr-histogram-percentiles-obj@3.0.0: - resolution: {integrity: sha512-7kIufnBqdsBGcSZLPJwqHT3yhk1QTsSlFsVD3kx5ixH/AlgBs9yM1q6DPhXZ8f8gtdqgh7N7/5btRLpQsS2gHw==} - dev: true - /he@1.2.0: resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} hasBin: true dev: true - /hosted-git-info@7.0.1: - resolution: {integrity: sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==} - engines: {node: ^16.14.0 || >=18.0.0} - dependencies: - lru-cache: 10.0.1 + /hookable@5.5.3: + resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==} dev: true /html-encoding-sniffer@4.0.0: @@ -9003,6 +8963,16 @@ packages: - supports-color dev: true + /http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + transitivePeerDependencies: + - supports-color + dev: true + /http-signature@1.3.6: resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} engines: {node: '>=0.10'} @@ -9012,18 +8982,18 @@ packages: sshpk: 1.17.0 dev: true - /https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} + /https-proxy-agent@7.0.2: + resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} + engines: {node: '>= 14'} dependencies: - agent-base: 6.0.2 + agent-base: 7.1.0 debug: 4.3.4(supports-color@8.1.1) transitivePeerDependencies: - supports-color dev: true - /https-proxy-agent@7.0.2: - resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} + /https-proxy-agent@7.0.4: + resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} engines: {node: '>= 14'} dependencies: agent-base: 7.1.0 @@ -9096,6 +9066,14 @@ packages: side-channel: 1.0.4 dev: true + /ip-address@9.0.5: + resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==} + engines: {node: '>= 12'} + dependencies: + jsbn: 1.1.0 + sprintf-js: 1.1.3 + dev: true + /ip-regex@4.3.0: resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} engines: {node: '>=8'} @@ -9117,10 +9095,6 @@ packages: is-typed-array: 1.1.12 dev: true - /is-arrayish@0.2.1: - resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} - dev: true - /is-bigint@1.0.4: resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} dependencies: @@ -9154,12 +9128,6 @@ packages: ci-info: 3.5.0 dev: true - /is-core-module@2.10.0: - resolution: {integrity: sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==} - dependencies: - has: 1.0.3 - dev: true - /is-date-object@1.0.5: resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} engines: {node: '>= 0.4'} @@ -9173,6 +9141,12 @@ packages: hasBin: true dev: true + /is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + dev: true + /is-extglob@2.1.1: resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} @@ -9190,6 +9164,14 @@ packages: is-extglob: 2.1.1 dev: true + /is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + dependencies: + is-docker: 3.0.0 + dev: true + /is-installed-globally@0.4.0: resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} engines: {node: '>=10'} @@ -9313,6 +9295,13 @@ packages: is-docker: 2.2.1 dev: true + /is-wsl@3.1.0: + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} + engines: {node: '>=16'} + dependencies: + is-inside-container: 1.0.0 + dev: true + /is2@2.0.9: resolution: {integrity: sha512-rZkHeBn9Zzq52sd9IUIV3a5mfwBY+o2HePMh0wkGBM4z4qjvy2GwVxQ6nNXSfw6MmVP6gf1QIlWjiOavhM3x5g==} engines: {node: '>=v0.10.0'} @@ -9379,6 +9368,10 @@ packages: resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} dev: true + /js-tokens@8.0.3: + resolution: {integrity: sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==} + dev: true + /js-yaml@4.1.0: resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} hasBin: true @@ -9390,6 +9383,10 @@ packages: resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} dev: true + /jsbn@1.1.0: + resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==} + dev: true + /jsdom@23.2.0: resolution: {integrity: sha512-L88oL7D/8ufIES+Zjz7v0aes+oBMh2Xnh3ygWvL0OaICOomKEPKuPnIfBJekiXr+BHbbMjrWn/xqrDQuxFTeyA==} engines: {node: '>=18'} @@ -9522,6 +9519,10 @@ packages: resolution: {integrity: sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==} dev: true + /kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + dev: true + /lazy-ass@1.6.0: resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} engines: {node: '> 0.8'} @@ -9540,11 +9541,6 @@ packages: immediate: 3.0.6 dev: true - /lines-and-columns@2.0.3: - resolution: {integrity: sha512-cNOjgCnLB+FnvWWtyRTzmB3POJ+cXxTA81LoW7u8JdmhfXzriropYwpjShnz1QLLWsQwY7nIxoDmcPTwphDK9w==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: true - /listenercount@1.0.1: resolution: {integrity: sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==} dev: true @@ -9657,11 +9653,6 @@ packages: get-func-name: 2.0.2 dev: true - /lru-cache@10.0.1: - resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} - engines: {node: 14 || >=16.14} - dev: true - /lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} dependencies: @@ -9675,11 +9666,23 @@ packages: yallist: 4.0.0 dev: true + /lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + dev: true + /magic-string@0.30.5: resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + + /magic-string@0.30.8: + resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} @@ -9766,8 +9769,8 @@ packages: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} dev: true - /mkdirp-classic@0.5.3: - resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + /mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} dev: true /mkdirp@0.5.6: @@ -9820,6 +9823,11 @@ packages: yargs-unparser: 2.0.0 dev: true + /mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + dev: true + /ms@2.1.2: resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} dev: true @@ -9828,8 +9836,8 @@ packages: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} dev: true - /muggle-string@0.3.1: - resolution: {integrity: sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==} + /muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} dev: true /nanoid@3.3.3: @@ -9843,6 +9851,11 @@ packages: engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true + /netmask@2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + dev: true + /nice-napi@1.0.2: resolution: {integrity: sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==} os: ['!win32'] @@ -9859,8 +9872,8 @@ packages: axe-core: 4.8.3 dev: true - /nightwatch@3.4.0(chromedriver@121.0.0)(geckodriver@4.3.1): - resolution: {integrity: sha512-/i6zo2HrAs1sXUqXqKpdV1e7OeeafZNfR69N+qZr25imC2+m91OgN4JNRDEmWNVtGGH+RcnpO4MPdvdGivvthA==} + /nightwatch@3.4.1(chromedriver@122.0.4)(geckodriver@4.3.3): + resolution: {integrity: sha512-IbrlmCmid+4qC85c7DHJWdqNDKB2O0qklxrWIDh+32/XXXJSuZ/Da/STFC2x60s5rENGUGk43G/fheULwlT7Hw==} engines: {node: '>= 16'} hasBin: true peerDependencies: @@ -9886,7 +9899,7 @@ packages: boxen: 5.1.2 chai-nightwatch: 0.5.3 chalk: 4.1.2 - chromedriver: 121.0.0 + chromedriver: 122.0.4 ci-info: 3.3.0 cli-table3: 0.6.3 devtools-protocol: 0.0.1140464 @@ -9894,7 +9907,7 @@ packages: dotenv: 16.3.1 ejs: 3.1.8 envinfo: 7.11.0 - geckodriver: 4.3.1 + geckodriver: 4.3.3 glob: 7.2.3 jsdom: 23.2.0 lodash: 4.17.21 @@ -9904,7 +9917,7 @@ packages: nightwatch-axe-verbose: 2.3.0 open: 8.4.2 ora: 5.4.1 - piscina: 3.2.0 + piscina: 4.4.0 selenium-webdriver: 4.16.0 semver: 7.5.4 stacktrace-parser: 0.1.10 @@ -9967,32 +9980,27 @@ packages: abbrev: 1.1.1 dev: true - /normalize-package-data@6.0.0: - resolution: {integrity: sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==} - engines: {node: ^16.14.0 || >=18.0.0} - dependencies: - hosted-git-info: 7.0.1 - is-core-module: 2.10.0 - semver: 7.5.4 - validate-npm-package-license: 3.0.4 - dev: true - /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} engines: {node: '>=0.10.0'} dev: true - /npm-run-all2@6.1.1: - resolution: {integrity: sha512-lWLbkPZ5BSdXtN8lR+0rc8caKoPdymycpZksyDEC9MOBvfdwTXZ0uVhb7bMcGeXv2/BKtfQuo6Zn3zfc8rxNXA==} + /npm-normalize-package-bin@3.0.1: + resolution: {integrity: sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + dev: true + + /npm-run-all2@6.1.2: + resolution: {integrity: sha512-WwwnS8Ft+RpXve6T2EIEVpFLSqN+ORHRvgNk3H9N62SZXjmzKoRhMFg3I17TK3oMaAEr+XFbRirWS2Fn3BCPSg==} engines: {node: ^14.18.0 || >=16.0.0, npm: '>= 8'} hasBin: true dependencies: ansi-styles: 6.2.1 cross-spawn: 7.0.3 memorystream: 0.3.1 - minimatch: 9.0.1 + minimatch: 9.0.3 pidtree: 0.6.0 - read-pkg: 8.1.0 + read-package-json-fast: 3.0.2 shell-quote: 1.7.3 dev: true @@ -10061,6 +10069,16 @@ packages: mimic-fn: 4.0.0 dev: true + /open@10.1.0: + resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==} + engines: {node: '>=18'} + dependencies: + default-browser: 5.2.1 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + is-wsl: 3.1.0 + dev: true + /open@8.4.2: resolution: {integrity: sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==} engines: {node: '>=12'} @@ -10117,19 +10135,32 @@ packages: aggregate-error: 3.1.0 dev: true - /pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + /pac-proxy-agent@7.0.1: + resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==} + engines: {node: '>= 14'} + dependencies: + '@tootallnate/quickjs-emscripten': 0.23.0 + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + get-uri: 6.0.3 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.4 + pac-resolver: 7.0.1 + socks-proxy-agent: 8.0.2 + transitivePeerDependencies: + - supports-color dev: true - /parse-json@7.1.0: - resolution: {integrity: sha512-ihtdrgbqdONYD156Ap6qTcaGcGdkdAxodO1wLqQ/j7HP1u2sFYppINiq4jyC8F+Nm+4fVufylCV00QmkTHkSUg==} - engines: {node: '>=16'} + /pac-resolver@7.0.1: + resolution: {integrity: sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==} + engines: {node: '>= 14'} dependencies: - '@babel/code-frame': 7.22.10 - error-ex: 1.3.2 - json-parse-even-better-errors: 3.0.0 - lines-and-columns: 2.0.3 - type-fest: 3.13.1 + degenerator: 5.0.1 + netmask: 2.0.2 + dev: true + + /pako@1.0.11: + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} dev: true /parse5@7.1.2: @@ -10170,6 +10201,10 @@ packages: resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==} dev: true + /pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + dev: true + /pathval@1.1.1: resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} dev: true @@ -10184,6 +10219,10 @@ packages: resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} dev: true + /perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + dev: true + /performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} dev: true @@ -10207,7 +10246,7 @@ packages: engines: {node: '>=0.10.0'} dev: true - /pinia@2.1.7(typescript@5.3.3)(vue@3.4.15): + /pinia@2.1.7(typescript@5.4.2)(vue@3.4.21): resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==} peerDependencies: '@vue/composition-api': ^1.4.0 @@ -10220,17 +10259,13 @@ packages: optional: true dependencies: '@vue/devtools-api': 6.5.0 - typescript: 5.3.3 - vue: 3.4.15(typescript@5.3.3) - vue-demi: 0.14.5(vue@3.4.15) + typescript: 5.4.2 + vue: 3.4.21(typescript@5.4.2) + vue-demi: 0.14.5(vue@3.4.21) dev: false - /piscina@3.2.0: - resolution: {integrity: sha512-yn/jMdHRw+q2ZJhFhyqsmANcbF6V2QwmD84c6xRau+QpQOmtrBCoRGdvTfeuFDYXB5W2m6MfLkjkvQa9lUSmIA==} - dependencies: - eventemitter-asyncresource: 1.0.0 - hdr-histogram-js: 2.0.3 - hdr-histogram-percentiles-obj: 3.0.0 + /piscina@4.4.0: + resolution: {integrity: sha512-+AQduEJefrOApE4bV7KRmp3N2JnnyErlVqq4P/jmko4FPz9Z877BCccl/iB3FdrWSUkvbGV9Kan/KllJgat3Vg==} optionalDependencies: nice-napi: 1.0.2 dev: true @@ -10243,24 +10278,24 @@ packages: pathe: 1.1.1 dev: true - /playwright-core@1.41.1: - resolution: {integrity: sha512-/KPO5DzXSMlxSX77wy+HihKGOunh3hqndhqeo/nMxfigiKzogn8kfL0ZBDu0L1RKgan5XHCPmn6zXd2NUJgjhg==} + /playwright-core@1.42.1: + resolution: {integrity: sha512-mxz6zclokgrke9p1vtdy/COWBH+eOZgYUVVU34C73M+4j4HLlQJHtfcqiqqxpP0o8HhMkflvfbquLX5dg6wlfA==} engines: {node: '>=16'} hasBin: true dev: true - /playwright@1.41.1: - resolution: {integrity: sha512-gdZAWG97oUnbBdRL3GuBvX3nDDmUOuqzV/D24dytqlKt+eI5KbwusluZRGljx1YoJKZ2NRPaeWiFTeGZO7SosQ==} + /playwright@1.42.1: + resolution: {integrity: sha512-PgwB03s2DZBcNRoW+1w9E+VkLBxweib6KTXM0M3tkiT4jVxKSi6PmVJ591J+0u10LUrgxB7dLRbiJqO5s2QPMg==} engines: {node: '>=16'} hasBin: true dependencies: - playwright-core: 1.41.1 + playwright-core: 1.42.1 optionalDependencies: fsevents: 2.3.2 dev: true - /postcss@8.4.32: - resolution: {integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==} + /postcss@8.4.33: + resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.7 @@ -10268,8 +10303,8 @@ packages: source-map-js: 1.0.2 dev: true - /postcss@8.4.33: - resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} + /postcss@8.4.35: + resolution: {integrity: sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.7 @@ -10303,6 +10338,22 @@ packages: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} dev: true + /proxy-agent@6.4.0: + resolution: {integrity: sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.4 + lru-cache: 7.18.3 + pac-proxy-agent: 7.0.1 + proxy-from-env: 1.1.0 + socks-proxy-agent: 8.0.2 + transitivePeerDependencies: + - supports-color + dev: true + /proxy-from-env@1.0.0: resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} dev: true @@ -10360,14 +10411,12 @@ packages: resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} dev: true - /read-pkg@8.1.0: - resolution: {integrity: sha512-PORM8AgzXeskHO/WEv312k9U03B8K9JSiWF/8N9sUuFjBa+9SF2u6K7VClzXwDXab51jCd8Nd36CNM+zR97ScQ==} - engines: {node: '>=16'} + /read-package-json-fast@3.0.2: + resolution: {integrity: sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dependencies: - '@types/normalize-package-data': 2.4.1 - normalize-package-data: 6.0.0 - parse-json: 7.1.0 - type-fest: 4.3.1 + json-parse-even-better-errors: 3.0.0 + npm-normalize-package-bin: 3.0.1 dev: true /readable-stream@2.3.8: @@ -10445,6 +10494,10 @@ packages: resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} dev: true + /rfdc@1.3.1: + resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==} + dev: true + /rimraf@2.7.1: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true @@ -10491,6 +10544,11 @@ packages: resolution: {integrity: sha512-APM0Gt1KoXBz0iIkkdB/kfvGOwC4UuJFeG/c+yV7wSc7q96cG/kJ0HiYCnzivD9SB53cLV1MlHFNfOuPaadYSw==} dev: true + /run-applescript@7.0.0: + resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==} + engines: {node: '>=18'} + dev: true + /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: @@ -10522,7 +10580,7 @@ packages: dependencies: jszip: 3.10.1 tmp: 0.2.1 - ws: 8.14.2 + ws: 8.16.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -10618,6 +10676,15 @@ packages: supports-color: 7.2.0 dev: true + /sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.25 + mrmime: 2.0.0 + totalist: 3.0.1 + dev: true + /slice-ansi@3.0.0: resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} engines: {node: '>=8'} @@ -10636,30 +10703,44 @@ packages: is-fullwidth-code-point: 3.0.0 dev: true - /source-map-js@1.0.2: - resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} - engines: {node: '>=0.10.0'} + /smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + dev: true - /spdx-correct@3.1.1: - resolution: {integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==} + /socks-proxy-agent@8.0.2: + resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==} + engines: {node: '>= 14'} dependencies: - spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.12 + agent-base: 7.1.0 + debug: 4.3.4(supports-color@8.1.1) + socks: 2.8.1 + transitivePeerDependencies: + - supports-color dev: true - /spdx-exceptions@2.3.0: - resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} + /socks@2.8.1: + resolution: {integrity: sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==} + engines: {node: '>= 10.0.0', npm: '>= 3.0.0'} + dependencies: + ip-address: 9.0.5 + smart-buffer: 4.2.0 dev: true - /spdx-expression-parse@3.0.1: - resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} - dependencies: - spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.12 + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + requiresBuild: true dev: true + optional: true - /spdx-license-ids@3.0.12: - resolution: {integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==} + /speakingurl@14.0.1: + resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==} + engines: {node: '>=0.10.0'} dev: true /split@0.3.3: @@ -10668,6 +10749,10 @@ packages: through: 2.3.8 dev: true + /sprintf-js@1.1.3: + resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==} + dev: true + /sshpk@1.17.0: resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} engines: {node: '>=0.10.0'} @@ -10786,10 +10871,10 @@ packages: engines: {node: '>=8'} dev: true - /strip-literal@1.3.0: - resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==} + /strip-literal@2.0.0: + resolution: {integrity: sha512-f9vHgsCWBq2ugHAkGMiiYY+AYG0D/cbloKKg0nhaaaSNsujdGIpVXCNsrJpCKr5M0f4aI31mr13UjY6GAuXCKA==} dependencies: - acorn: 8.10.0 + js-tokens: 8.0.3 dev: true /supports-color@5.5.0: @@ -10821,12 +10906,14 @@ packages: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} dev: true - /tar-fs@3.0.4: - resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==} + /tar-fs@3.0.5: + resolution: {integrity: sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==} dependencies: - mkdirp-classic: 0.5.3 pump: 3.0.0 tar-stream: 3.1.6 + optionalDependencies: + bare-fs: 2.2.1 + bare-path: 2.1.0 dev: true /tar-stream@2.2.0: @@ -10897,6 +10984,11 @@ packages: is-number: 7.0.0 dev: true + /totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + dev: true + /tough-cookie@4.1.3: resolution: {integrity: sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==} engines: {node: '>=6'} @@ -10918,7 +11010,7 @@ packages: resolution: {integrity: sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==} dev: true - /ts-node@10.9.2(@types/node@20.11.10)(typescript@5.3.3): + /ts-node@10.9.2(@types/node@20.11.25)(typescript@5.4.2): resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true peerDependencies: @@ -10937,14 +11029,14 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.11.10 + '@types/node': 20.11.25 acorn: 8.10.0 acorn-walk: 8.3.1 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 5.3.3 + typescript: 5.4.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -10983,18 +11075,8 @@ packages: engines: {node: '>=8'} dev: true - /type-fest@3.13.1: - resolution: {integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==} - engines: {node: '>=14.16'} - dev: true - - /type-fest@4.3.1: - resolution: {integrity: sha512-pphNW/msgOUSkJbH58x8sqpq8uQj6b0ZKGxEsLKMUnGorRcDjrUaLS+39+/ub41JNTwrrMyJcUB8+YZs3mbwqw==} - engines: {node: '>=16'} - dev: true - - /typescript@5.3.3: - resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + /typescript@5.4.2: + resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==} engines: {node: '>=14.17'} hasBin: true @@ -11067,13 +11149,6 @@ packages: resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} dev: true - /validate-npm-package-license@3.0.4: - resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} - dependencies: - spdx-correct: 3.1.1 - spdx-expression-parse: 3.0.1 - dev: true - /verror@1.10.0: resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} engines: {'0': node >=0.6.0} @@ -11083,8 +11158,16 @@ packages: extsprintf: 1.3.0 dev: true - /vite-node@1.2.2(@types/node@20.11.10): - resolution: {integrity: sha512-1as4rDTgVWJO3n1uHmUYqq7nsFgINQ9u+mRcXpjeOMJUmviqNKjcZB7UfRZrlM7MjYXMKpuWp5oGkjaFLnjawg==} + /vite-hot-client@0.2.3(vite@5.1.5): + resolution: {integrity: sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==} + peerDependencies: + vite: ^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0 + dependencies: + vite: 5.1.5(@types/node@20.11.25) + dev: true + + /vite-node@1.3.1(@types/node@20.11.25): + resolution: {integrity: sha512-azbRrqRxlWTJEVbzInZCTchx0X69M/XPTCz4H+TLvlTcR/xH/3hkRqhOakT41fMJCMzXTu4UvegkZiEoJAWvng==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true dependencies: @@ -11092,7 +11175,7 @@ packages: debug: 4.3.4(supports-color@8.1.1) pathe: 1.1.1 picocolors: 1.0.0 - vite: 5.0.12(@types/node@20.11.10) + vite: 5.1.5(@types/node@20.11.25) transitivePeerDependencies: - '@types/node' - less @@ -11104,12 +11187,37 @@ packages: - terser dev: true - /vite-plugin-nightwatch@0.4.6(vue@3.4.15): + /vite-plugin-inspect@0.8.3(vite@5.1.5): + resolution: {integrity: sha512-SBVzOIdP/kwe6hjkt7LSW4D0+REqqe58AumcnCfRNw4Kt3mbS9pEBkch+nupu2PBxv2tQi69EQHQ1ZA1vgB/Og==} + engines: {node: '>=14'} + peerDependencies: + '@nuxt/kit': '*' + vite: ^3.1.0 || ^4.0.0 || ^5.0.0-0 + peerDependenciesMeta: + '@nuxt/kit': + optional: true + dependencies: + '@antfu/utils': 0.7.7 + '@rollup/pluginutils': 5.1.0 + debug: 4.3.4(supports-color@8.1.1) + error-stack-parser-es: 0.1.1 + fs-extra: 11.2.0 + open: 10.1.0 + perfect-debounce: 1.0.0 + picocolors: 1.0.0 + sirv: 2.0.4 + vite: 5.1.5(@types/node@20.11.25) + transitivePeerDependencies: + - rollup + - supports-color + dev: true + + /vite-plugin-nightwatch@0.4.6(vue@3.4.21): resolution: {integrity: sha512-7mxANgh3KA2c/xGJU35T8z1Xj9akWQ4FuyB1PN3nwinqxqYBAx44sW9Z87a2x6efj5TD4lU0Tbuvvgous6F1+Q==} dependencies: '@nightwatch/esbuild-utils': 0.2.1 '@types/nightwatch': 2.3.30 - '@vue/test-utils': 2.4.4(vue@3.4.15) + '@vue/test-utils': 2.4.4(vue@3.4.21) assertion-error: 1.1.0 mkdirp: 2.1.6 sinon: 17.0.1 @@ -11122,7 +11230,47 @@ packages: - vue dev: true - /vite@4.5.0(@types/node@20.11.10): + /vite-plugin-vue-devtools@7.0.16(vite@5.1.5)(vue@3.4.21): + resolution: {integrity: sha512-M7TPQhTGlz33TdHkZRSwe4ZfA+aAsy3vlvnOqxVtPCj9aEtaqhgKgbQidImAMd6BgTgSwZ/ga/iHWhwABDrdNQ==} + engines: {node: '>=v14.21.3'} + peerDependencies: + vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0 + dependencies: + '@vue/devtools-core': 7.0.16(vite@5.1.5)(vue@3.4.21) + '@vue/devtools-kit': 7.0.16(vue@3.4.21) + '@vue/devtools-shared': 7.0.16 + execa: 8.0.1 + sirv: 2.0.4 + vite: 5.1.5(@types/node@20.11.25) + vite-plugin-inspect: 0.8.3(vite@5.1.5) + vite-plugin-vue-inspector: 4.0.2(vite@5.1.5) + transitivePeerDependencies: + - '@nuxt/kit' + - rollup + - supports-color + - vue + dev: true + + /vite-plugin-vue-inspector@4.0.2(vite@5.1.5): + resolution: {integrity: sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==} + peerDependencies: + vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 + dependencies: + '@babel/core': 7.23.5 + '@babel/plugin-proposal-decorators': 7.24.0(@babel/core@7.23.5) + '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5) + '@babel/plugin-transform-typescript': 7.23.5(@babel/core@7.23.5) + '@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.5) + '@vue/compiler-dom': 3.4.15 + kolorist: 1.8.0 + magic-string: 0.30.5 + vite: 5.1.5(@types/node@20.11.25) + transitivePeerDependencies: + - supports-color + dev: true + + /vite@4.5.0(@types/node@20.11.25): resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -11150,16 +11298,16 @@ packages: terser: optional: true dependencies: - '@types/node': 20.11.10 + '@types/node': 20.11.25 esbuild: 0.18.16 - postcss: 8.4.32 + postcss: 8.4.33 rollup: 3.28.0 optionalDependencies: fsevents: 2.3.3 dev: true - /vite@5.0.12(@types/node@20.11.10): - resolution: {integrity: sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==} + /vite@5.1.5(@types/node@20.11.25): + resolution: {integrity: sha512-BdN1xh0Of/oQafhU+FvopafUp6WaYenLU/NFoL5WyJL++GxkNfieKzBhM24H3HVsPQrlAqB7iJYTHabzaRed5Q==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: @@ -11186,23 +11334,23 @@ packages: terser: optional: true dependencies: - '@types/node': 20.11.10 + '@types/node': 20.11.25 esbuild: 0.19.8 - postcss: 8.4.32 + postcss: 8.4.35 rollup: 4.6.1 optionalDependencies: fsevents: 2.3.3 dev: true - /vitest@1.2.2(@types/node@20.11.10)(jsdom@24.0.0): - resolution: {integrity: sha512-d5Ouvrnms3GD9USIK36KG8OZ5bEvKEkITFtnGv56HFaSlbItJuYr7hv2Lkn903+AvRAgSixiamozUVfORUekjw==} + /vitest@1.3.1(@types/node@20.11.25)(jsdom@24.0.0): + resolution: {integrity: sha512-/1QJqXs8YbCrfv/GPQ05wAZf2eakUPLPa18vkJAKE7RXOKfVHqMZZ1WlTjiwl6Gcn65M5vpNUB6EFLnEdRdEXQ==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true peerDependencies: '@edge-runtime/vm': '*' '@types/node': ^18.0.0 || >=20.0.0 - '@vitest/browser': ^1.0.0 - '@vitest/ui': ^1.0.0 + '@vitest/browser': 1.3.1 + '@vitest/ui': 1.3.1 happy-dom: '*' jsdom: '*' peerDependenciesMeta: @@ -11219,14 +11367,13 @@ packages: jsdom: optional: true dependencies: - '@types/node': 20.11.10 - '@vitest/expect': 1.2.2 - '@vitest/runner': 1.2.2 - '@vitest/snapshot': 1.2.2 - '@vitest/spy': 1.2.2 - '@vitest/utils': 1.2.2 + '@types/node': 20.11.25 + '@vitest/expect': 1.3.1 + '@vitest/runner': 1.3.1 + '@vitest/snapshot': 1.3.1 + '@vitest/spy': 1.3.1 + '@vitest/utils': 1.3.1 acorn-walk: 8.3.2 - cac: 6.7.14 chai: 4.3.10 debug: 4.3.4(supports-color@8.1.1) execa: 8.0.1 @@ -11236,11 +11383,11 @@ packages: pathe: 1.1.1 picocolors: 1.0.0 std-env: 3.6.0 - strip-literal: 1.3.0 + strip-literal: 2.0.0 tinybench: 2.5.1 tinypool: 0.8.2 - vite: 5.0.12(@types/node@20.11.10) - vite-node: 1.2.2(@types/node@20.11.10) + vite: 5.1.5(@types/node@20.11.25) + vite-node: 1.3.1(@types/node@20.11.25) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -11256,7 +11403,7 @@ packages: resolution: {integrity: sha512-NCA6sekiJIMnMs4DdORxATXD+/NRkQpS32UC+I1KQJUasx+Z7MZUb3Y+MsKsFmX+PgyTYSteb73JW77AibaCCw==} dev: true - /vue-demi@0.14.5(vue@3.4.15): + /vue-demi@0.14.5(vue@3.4.21): resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==} engines: {node: '>=12'} hasBin: true @@ -11268,16 +11415,16 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.4.15(typescript@5.3.3) + vue: 3.4.21(typescript@5.4.2) dev: false - /vue-router@4.2.5(vue@3.4.15): - resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==} + /vue-router@4.3.0(vue@3.4.21): + resolution: {integrity: sha512-dqUcs8tUeG+ssgWhcPbjHvazML16Oga5w34uCUmsk7i0BcnskoLGwjpa15fqMr2Fa5JgVBrdL2MEgqz6XZ/6IQ==} peerDependencies: vue: ^3.2.0 dependencies: - '@vue/devtools-api': 6.5.0 - vue: 3.4.15(typescript@5.3.3) + '@vue/devtools-api': 6.6.1 + vue: 3.4.21(typescript@5.4.2) dev: false /vue-template-compiler@2.7.14: @@ -11287,32 +11434,32 @@ packages: he: 1.2.0 dev: true - /vue-tsc@1.8.27(typescript@5.3.3): - resolution: {integrity: sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==} + /vue-tsc@2.0.6(typescript@5.4.2): + resolution: {integrity: sha512-kK50W4XqQL34vHRkxlRWLicrT6+F9xfgCgJ4KSmCHcytKzc1u3c94XXgI+CjmhOSxyw0krpExF7Obo7y4+0dVQ==} hasBin: true peerDependencies: typescript: '*' dependencies: - '@volar/typescript': 1.11.1 - '@vue/language-core': 1.8.27(typescript@5.3.3) + '@volar/typescript': 2.1.2 + '@vue/language-core': 2.0.6(typescript@5.4.2) semver: 7.5.4 - typescript: 5.3.3 + typescript: 5.4.2 dev: true - /vue@3.4.15(typescript@5.3.3): - resolution: {integrity: sha512-jC0GH4KkWLWJOEQjOpkqU1bQsBwf4R1rsFtw5GQJbjHVKWDzO6P0nWWBTmjp1xSemAioDFj1jdaK1qa3DnMQoQ==} + /vue@3.4.21(typescript@5.4.2): + resolution: {integrity: sha512-5hjyV/jLEIKD/jYl4cavMcnzKwjMKohureP8ejn3hhEjwhWIhWeuzL2kJAjzl/WyVsgPY56Sy4Z40C3lVshxXA==} peerDependencies: typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@vue/compiler-dom': 3.4.15 - '@vue/compiler-sfc': 3.4.15 - '@vue/runtime-dom': 3.4.15 - '@vue/server-renderer': 3.4.15(vue@3.4.15) - '@vue/shared': 3.4.15 - typescript: 5.3.3 + '@vue/compiler-dom': 3.4.21 + '@vue/compiler-sfc': 3.4.21 + '@vue/runtime-dom': 3.4.21 + '@vue/server-renderer': 3.4.21(vue@3.4.21) + '@vue/shared': 3.4.21 + typescript: 5.4.2 /w3c-xmlserializer@5.0.0: resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} diff --git a/router-cypress/.vscode/extensions.json b/router-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-cypress/.vscode/extensions.json +++ b/router-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-cypress/README.md b/router-cypress/README.md index f9051d9b..3b627270 100644 --- a/router-cypress/README.md +++ b/router-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-cypress/package.json b/router-cypress/package.json index 26e19bc2..04ddac54 100644 --- a/router-cypress/package.json +++ b/router-cypress/package.json @@ -13,13 +13,13 @@ "test:unit:dev": "cypress open --component" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "cypress": "^13.6.3", + "@vitejs/plugin-vue": "^5.0.4", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/router-nightwatch/.vscode/extensions.json b/router-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/router-nightwatch/.vscode/extensions.json +++ b/router-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/router-nightwatch/README.md b/router-nightwatch/README.md index 922502c9..a63fb3a7 100644 --- a/router-nightwatch/README.md +++ b/router-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-nightwatch/package.json b/router-nightwatch/package.json index 840fc484..59942940 100644 --- a/router-nightwatch/package.json +++ b/router-nightwatch/package.json @@ -11,18 +11,18 @@ "test:unit": "nightwatch src/**/__tests__/*" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/router-pinia-cypress/.vscode/extensions.json b/router-pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-pinia-cypress/.vscode/extensions.json +++ b/router-pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-pinia-cypress/README.md b/router-pinia-cypress/README.md index 4fb2ddec..fd1d059a 100644 --- a/router-pinia-cypress/README.md +++ b/router-pinia-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-pinia-cypress/package.json b/router-pinia-cypress/package.json index 6ddc2565..aea1735a 100644 --- a/router-pinia-cypress/package.json +++ b/router-pinia-cypress/package.json @@ -14,13 +14,13 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "cypress": "^13.6.3", + "@vitejs/plugin-vue": "^5.0.4", + "cypress": "^13.6.6", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11" + "vite": "^5.1.5" } } diff --git a/router-pinia-nightwatch/.vscode/extensions.json b/router-pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/router-pinia-nightwatch/.vscode/extensions.json +++ b/router-pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/router-pinia-nightwatch/README.md b/router-pinia-nightwatch/README.md index 36bb4c89..2e1509e5 100644 --- a/router-pinia-nightwatch/README.md +++ b/router-pinia-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-pinia-nightwatch/package.json b/router-pinia-nightwatch/package.json index 6c83f3be..d512c355 100644 --- a/router-pinia-nightwatch/package.json +++ b/router-pinia-nightwatch/package.json @@ -12,18 +12,18 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6" } } diff --git a/router-pinia-playwright/.vscode/extensions.json b/router-pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/router-pinia-playwright/.vscode/extensions.json +++ b/router-pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/router-pinia-playwright/README.md b/router-pinia-playwright/README.md index 75001ce0..577f7575 100644 --- a/router-pinia-playwright/README.md +++ b/router-pinia-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-pinia-playwright/package.json b/router-pinia-playwright/package.json index dcdc7510..ec528dc0 100644 --- a/router-pinia-playwright/package.json +++ b/router-pinia-playwright/package.json @@ -11,12 +11,12 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/router-pinia-vitest-cypress/.vscode/extensions.json b/router-pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-pinia-vitest-cypress/.vscode/extensions.json +++ b/router-pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-pinia-vitest-cypress/README.md b/router-pinia-vitest-cypress/README.md index c7d98a84..bac15b21 100644 --- a/router-pinia-vitest-cypress/README.md +++ b/router-pinia-vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-pinia-vitest-cypress/package.json b/router-pinia-vitest-cypress/package.json index c04bd849..c29a9f88 100644 --- a/router-pinia-vitest-cypress/package.json +++ b/router-pinia-vitest-cypress/package.json @@ -13,16 +13,16 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/router-pinia-vitest-nightwatch/.vscode/extensions.json b/router-pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/router-pinia-vitest-nightwatch/.vscode/extensions.json +++ b/router-pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/router-pinia-vitest-nightwatch/README.md b/router-pinia-vitest-nightwatch/README.md index dc5fd329..dff0f439 100644 --- a/router-pinia-vitest-nightwatch/README.md +++ b/router-pinia-vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/router-pinia-vitest-nightwatch/package.json b/router-pinia-vitest-nightwatch/package.json index 8907bdd5..d8c92dde 100644 --- a/router-pinia-vitest-nightwatch/package.json +++ b/router-pinia-vitest-nightwatch/package.json @@ -12,20 +12,20 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/router-pinia-vitest-playwright/.vscode/extensions.json b/router-pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/router-pinia-vitest-playwright/.vscode/extensions.json +++ b/router-pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/router-pinia-vitest-playwright/README.md b/router-pinia-vitest-playwright/README.md index 189517a5..f80ad864 100644 --- a/router-pinia-vitest-playwright/README.md +++ b/router-pinia-vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-pinia-vitest-playwright/package.json b/router-pinia-vitest-playwright/package.json index accebf49..dcc9f4b7 100644 --- a/router-pinia-vitest-playwright/package.json +++ b/router-pinia-vitest-playwright/package.json @@ -12,15 +12,15 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/router-pinia-vitest/.vscode/extensions.json b/router-pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-pinia-vitest/.vscode/extensions.json +++ b/router-pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-pinia-vitest/README.md b/router-pinia-vitest/README.md index 471aea4b..52aa946c 100644 --- a/router-pinia-vitest/README.md +++ b/router-pinia-vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-pinia-vitest/package.json b/router-pinia-vitest/package.json index 33a4f052..047923ab 100644 --- a/router-pinia-vitest/package.json +++ b/router-pinia-vitest/package.json @@ -11,14 +11,14 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/router-pinia-with-tests/.vscode/extensions.json b/router-pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-pinia-with-tests/.vscode/extensions.json +++ b/router-pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-pinia-with-tests/README.md b/router-pinia-with-tests/README.md index 57e507fe..b9d02373 100644 --- a/router-pinia-with-tests/README.md +++ b/router-pinia-with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/router-pinia-with-tests/cypress.config.js b/router-pinia-with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/router-pinia-with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/router-pinia-with-tests/cypress/e2e/example.cy.js b/router-pinia-with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/router-pinia-with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/router-pinia-with-tests/cypress/e2e/jsconfig.json b/router-pinia-with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/router-pinia-with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/router-pinia-with-tests/cypress/fixtures/example.json b/router-pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/router-pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/router-pinia-with-tests/cypress/support/commands.js b/router-pinia-with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/router-pinia-with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/router-pinia-with-tests/cypress/support/e2e.js b/router-pinia-with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/router-pinia-with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/router-pinia-with-tests/package.json b/router-pinia-with-tests/package.json index f16b3be2..d92e197c 100644 --- a/router-pinia-with-tests/package.json +++ b/router-pinia-with-tests/package.json @@ -6,23 +6,15 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js b/router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/router-pinia-with-tests/vitest.config.js b/router-pinia-with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/router-pinia-with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/router-pinia/.vscode/extensions.json b/router-pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-pinia/.vscode/extensions.json +++ b/router-pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-pinia/README.md b/router-pinia/README.md index 514afe14..1eb12121 100644 --- a/router-pinia/README.md +++ b/router-pinia/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-pinia/package.json b/router-pinia/package.json index 058b8798..681b8c67 100644 --- a/router-pinia/package.json +++ b/router-pinia/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/router-playwright/.vscode/extensions.json b/router-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/router-playwright/.vscode/extensions.json +++ b/router-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/router-playwright/README.md b/router-playwright/README.md index 132a6acf..5f71685a 100644 --- a/router-playwright/README.md +++ b/router-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-playwright/package.json b/router-playwright/package.json index b8efafc8..1de3152e 100644 --- a/router-playwright/package.json +++ b/router-playwright/package.json @@ -10,12 +10,12 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/router-vitest-cypress/.vscode/extensions.json b/router-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-vitest-cypress/.vscode/extensions.json +++ b/router-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-vitest-cypress/README.md b/router-vitest-cypress/README.md index 798e3f4e..5fca4439 100644 --- a/router-vitest-cypress/README.md +++ b/router-vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-vitest-cypress/package.json b/router-vitest-cypress/package.json index 418bc74b..3528c4d8 100644 --- a/router-vitest-cypress/package.json +++ b/router-vitest-cypress/package.json @@ -12,16 +12,16 @@ "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/router-vitest-nightwatch/.vscode/extensions.json b/router-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/router-vitest-nightwatch/.vscode/extensions.json +++ b/router-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/router-vitest-nightwatch/README.md b/router-vitest-nightwatch/README.md index 4f57de03..c22a455d 100644 --- a/router-vitest-nightwatch/README.md +++ b/router-vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/router-vitest-nightwatch/package.json b/router-vitest-nightwatch/package.json index f70733a3..aa051aa0 100644 --- a/router-vitest-nightwatch/package.json +++ b/router-vitest-nightwatch/package.json @@ -11,20 +11,20 @@ "test:e2e": "nightwatch tests/e2e/*" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/router-vitest-playwright/.vscode/extensions.json b/router-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/router-vitest-playwright/.vscode/extensions.json +++ b/router-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/router-vitest-playwright/README.md b/router-vitest-playwright/README.md index ad3a9952..4b0065f3 100644 --- a/router-vitest-playwright/README.md +++ b/router-vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-vitest-playwright/package.json b/router-vitest-playwright/package.json index a4b74c4d..fef08709 100644 --- a/router-vitest-playwright/package.json +++ b/router-vitest-playwright/package.json @@ -11,15 +11,15 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/router-vitest/.vscode/extensions.json b/router-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-vitest/.vscode/extensions.json +++ b/router-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-vitest/README.md b/router-vitest/README.md index 25e8bcb7..97206c6b 100644 --- a/router-vitest/README.md +++ b/router-vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router-vitest/package.json b/router-vitest/package.json index 92246b3e..cc50907d 100644 --- a/router-vitest/package.json +++ b/router-vitest/package.json @@ -10,14 +10,14 @@ "test:unit": "vitest" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/router-with-tests/.vscode/extensions.json b/router-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router-with-tests/.vscode/extensions.json +++ b/router-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router-with-tests/README.md b/router-with-tests/README.md index 67340fc9..dfd9b15b 100644 --- a/router-with-tests/README.md +++ b/router-with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/router-with-tests/cypress.config.js b/router-with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/router-with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/router-with-tests/cypress/e2e/example.cy.js b/router-with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/router-with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/router-with-tests/cypress/e2e/jsconfig.json b/router-with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/router-with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/router-with-tests/cypress/fixtures/example.json b/router-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/router-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/router-with-tests/cypress/support/commands.js b/router-with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/router-with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/router-with-tests/cypress/support/e2e.js b/router-with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/router-with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/router-with-tests/package.json b/router-with-tests/package.json index 94a159fc..1da23e52 100644 --- a/router-with-tests/package.json +++ b/router-with-tests/package.json @@ -6,22 +6,14 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/router-with-tests/src/components/__tests__/HelloWorld.spec.js b/router-with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/router-with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/router-with-tests/vitest.config.js b/router-with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/router-with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/router/.vscode/extensions.json b/router/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/router/.vscode/extensions.json +++ b/router/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/router/README.md b/router/README.md index 333dacc6..d1f07629 100644 --- a/router/README.md +++ b/router/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/router/package.json b/router/package.json index 539aa5b7..b69e4ef3 100644 --- a/router/package.json +++ b/router/package.json @@ -9,11 +9,11 @@ "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "vite": "^5.0.11" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/typescript-cypress/.vscode/extensions.json b/typescript-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-cypress/.vscode/extensions.json +++ b/typescript-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-cypress/README.md b/typescript-cypress/README.md index 48f0f894..de927fb5 100644 --- a/typescript-cypress/README.md +++ b/typescript-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-cypress/package.json b/typescript-cypress/package.json index aa69db49..845a3426 100644 --- a/typescript-cypress/package.json +++ b/typescript-cypress/package.json @@ -15,18 +15,18 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-cypress/.vscode/extensions.json b/typescript-jsx-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-cypress/.vscode/extensions.json +++ b/typescript-jsx-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-cypress/README.md b/typescript-jsx-cypress/README.md index 9dba742f..f594a12a 100644 --- a/typescript-jsx-cypress/README.md +++ b/typescript-jsx-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-cypress/package.json b/typescript-jsx-cypress/package.json index 793bb786..61d1f547 100644 --- a/typescript-jsx-cypress/package.json +++ b/typescript-jsx-cypress/package.json @@ -15,19 +15,19 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-nightwatch/.vscode/extensions.json b/typescript-jsx-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-nightwatch/README.md b/typescript-jsx-nightwatch/README.md index 9b881c03..7f0ff45d 100644 --- a/typescript-jsx-nightwatch/README.md +++ b/typescript-jsx-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-nightwatch/package.json b/typescript-jsx-nightwatch/package.json index 810df549..5635b163 100644 --- a/typescript-jsx-nightwatch/package.json +++ b/typescript-jsx-nightwatch/package.json @@ -13,24 +13,24 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-cypress/.vscode/extensions.json b/typescript-jsx-pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-pinia-cypress/.vscode/extensions.json +++ b/typescript-jsx-pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-pinia-cypress/README.md b/typescript-jsx-pinia-cypress/README.md index 35cce24d..a96baa85 100644 --- a/typescript-jsx-pinia-cypress/README.md +++ b/typescript-jsx-pinia-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-pinia-cypress/package.json b/typescript-jsx-pinia-cypress/package.json index 829451b5..685b4b0f 100644 --- a/typescript-jsx-pinia-cypress/package.json +++ b/typescript-jsx-pinia-cypress/package.json @@ -16,19 +16,19 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-nightwatch/.vscode/extensions.json b/typescript-jsx-pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-pinia-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-pinia-nightwatch/README.md b/typescript-jsx-pinia-nightwatch/README.md index d5692ffb..ec058cd9 100644 --- a/typescript-jsx-pinia-nightwatch/README.md +++ b/typescript-jsx-pinia-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-pinia-nightwatch/package.json b/typescript-jsx-pinia-nightwatch/package.json index d0c23d53..d6a3e1b6 100644 --- a/typescript-jsx-pinia-nightwatch/package.json +++ b/typescript-jsx-pinia-nightwatch/package.json @@ -14,24 +14,24 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-playwright/.vscode/extensions.json b/typescript-jsx-pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-pinia-playwright/.vscode/extensions.json +++ b/typescript-jsx-pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-pinia-playwright/README.md b/typescript-jsx-pinia-playwright/README.md index 11d7f303..c2df0962 100644 --- a/typescript-jsx-pinia-playwright/README.md +++ b/typescript-jsx-pinia-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-pinia-playwright/package.json b/typescript-jsx-pinia-playwright/package.json index 0b6d6609..1023c137 100644 --- a/typescript-jsx-pinia-playwright/package.json +++ b/typescript-jsx-pinia-playwright/package.json @@ -13,18 +13,18 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-vitest-cypress/.vscode/extensions.json b/typescript-jsx-pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-pinia-vitest-cypress/.vscode/extensions.json +++ b/typescript-jsx-pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-pinia-vitest-cypress/README.md b/typescript-jsx-pinia-vitest-cypress/README.md index fd81efc3..7a35ad98 100644 --- a/typescript-jsx-pinia-vitest-cypress/README.md +++ b/typescript-jsx-pinia-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-pinia-vitest-cypress/package.json b/typescript-jsx-pinia-vitest-cypress/package.json index 0feb86f1..34ff67dc 100644 --- a/typescript-jsx-pinia-vitest-cypress/package.json +++ b/typescript-jsx-pinia-vitest-cypress/package.json @@ -15,23 +15,23 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-vitest-nightwatch/.vscode/extensions.json b/typescript-jsx-pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-pinia-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-pinia-vitest-nightwatch/README.md b/typescript-jsx-pinia-vitest-nightwatch/README.md index 98c93413..625e24a6 100644 --- a/typescript-jsx-pinia-vitest-nightwatch/README.md +++ b/typescript-jsx-pinia-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-jsx-pinia-vitest-nightwatch/package.json b/typescript-jsx-pinia-vitest-nightwatch/package.json index d026625d..e3b79b6c 100644 --- a/typescript-jsx-pinia-vitest-nightwatch/package.json +++ b/typescript-jsx-pinia-vitest-nightwatch/package.json @@ -14,27 +14,27 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-vitest-playwright/.vscode/extensions.json b/typescript-jsx-pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-pinia-vitest-playwright/.vscode/extensions.json +++ b/typescript-jsx-pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-pinia-vitest-playwright/README.md b/typescript-jsx-pinia-vitest-playwright/README.md index 741e2298..37028a51 100644 --- a/typescript-jsx-pinia-vitest-playwright/README.md +++ b/typescript-jsx-pinia-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-pinia-vitest-playwright/package.json b/typescript-jsx-pinia-vitest-playwright/package.json index 33fa0731..e37fbc0f 100644 --- a/typescript-jsx-pinia-vitest-playwright/package.json +++ b/typescript-jsx-pinia-vitest-playwright/package.json @@ -14,22 +14,22 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-vitest/.vscode/extensions.json b/typescript-jsx-pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-pinia-vitest/.vscode/extensions.json +++ b/typescript-jsx-pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-pinia-vitest/README.md b/typescript-jsx-pinia-vitest/README.md index 016c52b6..908ace23 100644 --- a/typescript-jsx-pinia-vitest/README.md +++ b/typescript-jsx-pinia-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-pinia-vitest/package.json b/typescript-jsx-pinia-vitest/package.json index dc6dabab..b56a8b55 100644 --- a/typescript-jsx-pinia-vitest/package.json +++ b/typescript-jsx-pinia-vitest/package.json @@ -13,21 +13,21 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-with-tests/.vscode/extensions.json b/typescript-jsx-pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-pinia-with-tests/.vscode/extensions.json +++ b/typescript-jsx-pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-pinia-with-tests/README.md b/typescript-jsx-pinia-with-tests/README.md index 0704f2f8..2597eff7 100644 --- a/typescript-jsx-pinia-with-tests/README.md +++ b/typescript-jsx-pinia-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-jsx-pinia-with-tests/cypress.config.ts b/typescript-jsx-pinia-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-jsx-pinia-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-jsx-pinia-with-tests/cypress/e2e/example.cy.ts b/typescript-jsx-pinia-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-jsx-pinia-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-jsx-pinia-with-tests/cypress/e2e/tsconfig.json b/typescript-jsx-pinia-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-jsx-pinia-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-jsx-pinia-with-tests/cypress/fixtures/example.json b/typescript-jsx-pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-jsx-pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-jsx-pinia-with-tests/cypress/support/commands.ts b/typescript-jsx-pinia-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-jsx-pinia-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-jsx-pinia-with-tests/cypress/support/e2e.ts b/typescript-jsx-pinia-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-jsx-pinia-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-jsx-pinia-with-tests/package.json b/typescript-jsx-pinia-with-tests/package.json index cf7fbbd6..6706881c 100644 --- a/typescript-jsx-pinia-with-tests/package.json +++ b/typescript-jsx-pinia-with-tests/package.json @@ -7,31 +7,22 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-jsx-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-jsx-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-jsx-pinia-with-tests/tsconfig.json b/typescript-jsx-pinia-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-jsx-pinia-with-tests/tsconfig.json +++ b/typescript-jsx-pinia-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-jsx-pinia-with-tests/tsconfig.vitest.json b/typescript-jsx-pinia-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-jsx-pinia-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-jsx-pinia-with-tests/vitest.config.ts b/typescript-jsx-pinia-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-jsx-pinia-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript-jsx-pinia/.vscode/extensions.json b/typescript-jsx-pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-pinia/.vscode/extensions.json +++ b/typescript-jsx-pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-pinia/README.md b/typescript-jsx-pinia/README.md index 3edce380..57ba3776 100644 --- a/typescript-jsx-pinia/README.md +++ b/typescript-jsx-pinia/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-pinia/package.json b/typescript-jsx-pinia/package.json index 0dfb51b0..fe33cc58 100644 --- a/typescript-jsx-pinia/package.json +++ b/typescript-jsx-pinia/package.json @@ -12,17 +12,17 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-playwright/.vscode/extensions.json b/typescript-jsx-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-playwright/.vscode/extensions.json +++ b/typescript-jsx-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-playwright/README.md b/typescript-jsx-playwright/README.md index 70d13e4f..b2a2641c 100644 --- a/typescript-jsx-playwright/README.md +++ b/typescript-jsx-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-playwright/package.json b/typescript-jsx-playwright/package.json index 9dd3d819..3fe3e15e 100644 --- a/typescript-jsx-playwright/package.json +++ b/typescript-jsx-playwright/package.json @@ -12,18 +12,18 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-cypress/.vscode/extensions.json b/typescript-jsx-router-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-cypress/.vscode/extensions.json +++ b/typescript-jsx-router-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-cypress/README.md b/typescript-jsx-router-cypress/README.md index 17bbbfb7..eed3da52 100644 --- a/typescript-jsx-router-cypress/README.md +++ b/typescript-jsx-router-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-cypress/package.json b/typescript-jsx-router-cypress/package.json index 10df32ed..4fbc009a 100644 --- a/typescript-jsx-router-cypress/package.json +++ b/typescript-jsx-router-cypress/package.json @@ -15,20 +15,20 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-nightwatch/.vscode/extensions.json b/typescript-jsx-router-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-router-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-router-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-router-nightwatch/README.md b/typescript-jsx-router-nightwatch/README.md index 65ea3337..17f0883a 100644 --- a/typescript-jsx-router-nightwatch/README.md +++ b/typescript-jsx-router-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-nightwatch/package.json b/typescript-jsx-router-nightwatch/package.json index 93f87638..2227ebc0 100644 --- a/typescript-jsx-router-nightwatch/package.json +++ b/typescript-jsx-router-nightwatch/package.json @@ -13,25 +13,25 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-cypress/.vscode/extensions.json b/typescript-jsx-router-pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-pinia-cypress/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-pinia-cypress/README.md b/typescript-jsx-router-pinia-cypress/README.md index 1b67b664..f2f21bcc 100644 --- a/typescript-jsx-router-pinia-cypress/README.md +++ b/typescript-jsx-router-pinia-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-pinia-cypress/package.json b/typescript-jsx-router-pinia-cypress/package.json index 607ab935..8b28c6c0 100644 --- a/typescript-jsx-router-pinia-cypress/package.json +++ b/typescript-jsx-router-pinia-cypress/package.json @@ -16,20 +16,20 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-nightwatch/.vscode/extensions.json b/typescript-jsx-router-pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-router-pinia-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-router-pinia-nightwatch/README.md b/typescript-jsx-router-pinia-nightwatch/README.md index 30ddad29..928ce8a5 100644 --- a/typescript-jsx-router-pinia-nightwatch/README.md +++ b/typescript-jsx-router-pinia-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-pinia-nightwatch/package.json b/typescript-jsx-router-pinia-nightwatch/package.json index 44898581..eb707728 100644 --- a/typescript-jsx-router-pinia-nightwatch/package.json +++ b/typescript-jsx-router-pinia-nightwatch/package.json @@ -14,25 +14,25 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-playwright/.vscode/extensions.json b/typescript-jsx-router-pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-router-pinia-playwright/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-router-pinia-playwright/README.md b/typescript-jsx-router-pinia-playwright/README.md index 907b58e9..1ae95f7b 100644 --- a/typescript-jsx-router-pinia-playwright/README.md +++ b/typescript-jsx-router-pinia-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-pinia-playwright/package.json b/typescript-jsx-router-pinia-playwright/package.json index 1eb51798..cb1e6093 100644 --- a/typescript-jsx-router-pinia-playwright/package.json +++ b/typescript-jsx-router-pinia-playwright/package.json @@ -13,19 +13,19 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-vitest-cypress/.vscode/extensions.json b/typescript-jsx-router-pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-pinia-vitest-cypress/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-pinia-vitest-cypress/README.md b/typescript-jsx-router-pinia-vitest-cypress/README.md index 9a241057..fcf8e6cc 100644 --- a/typescript-jsx-router-pinia-vitest-cypress/README.md +++ b/typescript-jsx-router-pinia-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-pinia-vitest-cypress/package.json b/typescript-jsx-router-pinia-vitest-cypress/package.json index f475f024..8c5d310c 100644 --- a/typescript-jsx-router-pinia-vitest-cypress/package.json +++ b/typescript-jsx-router-pinia-vitest-cypress/package.json @@ -15,24 +15,24 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json b/typescript-jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-router-pinia-vitest-nightwatch/README.md b/typescript-jsx-router-pinia-vitest-nightwatch/README.md index 256859bf..8df8b88a 100644 --- a/typescript-jsx-router-pinia-vitest-nightwatch/README.md +++ b/typescript-jsx-router-pinia-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-jsx-router-pinia-vitest-nightwatch/package.json b/typescript-jsx-router-pinia-vitest-nightwatch/package.json index 2c8ed3dd..2557c1d3 100644 --- a/typescript-jsx-router-pinia-vitest-nightwatch/package.json +++ b/typescript-jsx-router-pinia-vitest-nightwatch/package.json @@ -14,28 +14,28 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-vitest-playwright/.vscode/extensions.json b/typescript-jsx-router-pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-router-pinia-vitest-playwright/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-router-pinia-vitest-playwright/README.md b/typescript-jsx-router-pinia-vitest-playwright/README.md index e4650e49..80b425a7 100644 --- a/typescript-jsx-router-pinia-vitest-playwright/README.md +++ b/typescript-jsx-router-pinia-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-pinia-vitest-playwright/package.json b/typescript-jsx-router-pinia-vitest-playwright/package.json index 1b964628..6adecc0b 100644 --- a/typescript-jsx-router-pinia-vitest-playwright/package.json +++ b/typescript-jsx-router-pinia-vitest-playwright/package.json @@ -14,23 +14,23 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-vitest/.vscode/extensions.json b/typescript-jsx-router-pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-pinia-vitest/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-pinia-vitest/README.md b/typescript-jsx-router-pinia-vitest/README.md index 6561c331..219c0d28 100644 --- a/typescript-jsx-router-pinia-vitest/README.md +++ b/typescript-jsx-router-pinia-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-pinia-vitest/package.json b/typescript-jsx-router-pinia-vitest/package.json index 6590fff7..5ec78ec2 100644 --- a/typescript-jsx-router-pinia-vitest/package.json +++ b/typescript-jsx-router-pinia-vitest/package.json @@ -13,22 +13,22 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-with-tests/.vscode/extensions.json b/typescript-jsx-router-pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-pinia-with-tests/.vscode/extensions.json +++ b/typescript-jsx-router-pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-pinia-with-tests/README.md b/typescript-jsx-router-pinia-with-tests/README.md index cfbfc7f7..aed8883b 100644 --- a/typescript-jsx-router-pinia-with-tests/README.md +++ b/typescript-jsx-router-pinia-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-jsx-router-pinia-with-tests/cypress.config.ts b/typescript-jsx-router-pinia-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-jsx-router-pinia-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-jsx-router-pinia-with-tests/cypress/e2e/example.cy.ts b/typescript-jsx-router-pinia-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-jsx-router-pinia-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-jsx-router-pinia-with-tests/cypress/e2e/tsconfig.json b/typescript-jsx-router-pinia-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-jsx-router-pinia-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-jsx-router-pinia-with-tests/cypress/fixtures/example.json b/typescript-jsx-router-pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-jsx-router-pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-jsx-router-pinia-with-tests/cypress/support/commands.ts b/typescript-jsx-router-pinia-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-jsx-router-pinia-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-jsx-router-pinia-with-tests/cypress/support/e2e.ts b/typescript-jsx-router-pinia-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-jsx-router-pinia-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-jsx-router-pinia-with-tests/package.json b/typescript-jsx-router-pinia-with-tests/package.json index 8130110b..baa1c3a2 100644 --- a/typescript-jsx-router-pinia-with-tests/package.json +++ b/typescript-jsx-router-pinia-with-tests/package.json @@ -7,32 +7,23 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-jsx-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-jsx-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-jsx-router-pinia-with-tests/tsconfig.json b/typescript-jsx-router-pinia-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-jsx-router-pinia-with-tests/tsconfig.json +++ b/typescript-jsx-router-pinia-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-jsx-router-pinia-with-tests/tsconfig.vitest.json b/typescript-jsx-router-pinia-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-jsx-router-pinia-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-jsx-router-pinia-with-tests/vitest.config.ts b/typescript-jsx-router-pinia-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-jsx-router-pinia-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript-jsx-router-pinia/.vscode/extensions.json b/typescript-jsx-router-pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-pinia/.vscode/extensions.json +++ b/typescript-jsx-router-pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-pinia/README.md b/typescript-jsx-router-pinia/README.md index dc923bd0..90d8ef3c 100644 --- a/typescript-jsx-router-pinia/README.md +++ b/typescript-jsx-router-pinia/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-pinia/package.json b/typescript-jsx-router-pinia/package.json index b9bfb988..0ca093e9 100644 --- a/typescript-jsx-router-pinia/package.json +++ b/typescript-jsx-router-pinia/package.json @@ -12,18 +12,18 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-playwright/.vscode/extensions.json b/typescript-jsx-router-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-router-playwright/.vscode/extensions.json +++ b/typescript-jsx-router-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-router-playwright/README.md b/typescript-jsx-router-playwright/README.md index eaca2b35..9e1024dd 100644 --- a/typescript-jsx-router-playwright/README.md +++ b/typescript-jsx-router-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-playwright/package.json b/typescript-jsx-router-playwright/package.json index 0ad42942..52fbaa2b 100644 --- a/typescript-jsx-router-playwright/package.json +++ b/typescript-jsx-router-playwright/package.json @@ -12,19 +12,19 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-vitest-cypress/.vscode/extensions.json b/typescript-jsx-router-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-vitest-cypress/.vscode/extensions.json +++ b/typescript-jsx-router-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-vitest-cypress/README.md b/typescript-jsx-router-vitest-cypress/README.md index 8cdb45fc..122cbe0f 100644 --- a/typescript-jsx-router-vitest-cypress/README.md +++ b/typescript-jsx-router-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-vitest-cypress/package.json b/typescript-jsx-router-vitest-cypress/package.json index 328a3236..940b3fd0 100644 --- a/typescript-jsx-router-vitest-cypress/package.json +++ b/typescript-jsx-router-vitest-cypress/package.json @@ -14,24 +14,24 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-vitest-nightwatch/.vscode/extensions.json b/typescript-jsx-router-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-router-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-router-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-router-vitest-nightwatch/README.md b/typescript-jsx-router-vitest-nightwatch/README.md index 1617507a..df5fa82f 100644 --- a/typescript-jsx-router-vitest-nightwatch/README.md +++ b/typescript-jsx-router-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-jsx-router-vitest-nightwatch/package.json b/typescript-jsx-router-vitest-nightwatch/package.json index 3c11e620..abf1c2e0 100644 --- a/typescript-jsx-router-vitest-nightwatch/package.json +++ b/typescript-jsx-router-vitest-nightwatch/package.json @@ -13,28 +13,28 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-vitest-playwright/.vscode/extensions.json b/typescript-jsx-router-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-router-vitest-playwright/.vscode/extensions.json +++ b/typescript-jsx-router-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-router-vitest-playwright/README.md b/typescript-jsx-router-vitest-playwright/README.md index 14a06543..940f87ab 100644 --- a/typescript-jsx-router-vitest-playwright/README.md +++ b/typescript-jsx-router-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-vitest-playwright/package.json b/typescript-jsx-router-vitest-playwright/package.json index 0040ca86..783ac331 100644 --- a/typescript-jsx-router-vitest-playwright/package.json +++ b/typescript-jsx-router-vitest-playwright/package.json @@ -13,23 +13,23 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-vitest/.vscode/extensions.json b/typescript-jsx-router-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-vitest/.vscode/extensions.json +++ b/typescript-jsx-router-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-vitest/README.md b/typescript-jsx-router-vitest/README.md index 51d21c67..aef56943 100644 --- a/typescript-jsx-router-vitest/README.md +++ b/typescript-jsx-router-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router-vitest/package.json b/typescript-jsx-router-vitest/package.json index 60414013..56679efc 100644 --- a/typescript-jsx-router-vitest/package.json +++ b/typescript-jsx-router-vitest/package.json @@ -12,22 +12,22 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-with-tests/.vscode/extensions.json b/typescript-jsx-router-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router-with-tests/.vscode/extensions.json +++ b/typescript-jsx-router-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router-with-tests/README.md b/typescript-jsx-router-with-tests/README.md index f51d0abc..9bf0e3bc 100644 --- a/typescript-jsx-router-with-tests/README.md +++ b/typescript-jsx-router-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-jsx-router-with-tests/cypress.config.ts b/typescript-jsx-router-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-jsx-router-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-jsx-router-with-tests/cypress/e2e/example.cy.ts b/typescript-jsx-router-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-jsx-router-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-jsx-router-with-tests/cypress/e2e/tsconfig.json b/typescript-jsx-router-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-jsx-router-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-jsx-router-with-tests/cypress/fixtures/example.json b/typescript-jsx-router-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-jsx-router-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-jsx-router-with-tests/cypress/support/commands.ts b/typescript-jsx-router-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-jsx-router-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-jsx-router-with-tests/cypress/support/e2e.ts b/typescript-jsx-router-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-jsx-router-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-jsx-router-with-tests/package.json b/typescript-jsx-router-with-tests/package.json index 05df8ee0..b1f6a8eb 100644 --- a/typescript-jsx-router-with-tests/package.json +++ b/typescript-jsx-router-with-tests/package.json @@ -7,31 +7,22 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-router-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-jsx-router-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-jsx-router-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-jsx-router-with-tests/tsconfig.json b/typescript-jsx-router-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-jsx-router-with-tests/tsconfig.json +++ b/typescript-jsx-router-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-jsx-router-with-tests/tsconfig.vitest.json b/typescript-jsx-router-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-jsx-router-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-jsx-router-with-tests/vitest.config.ts b/typescript-jsx-router-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-jsx-router-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript-jsx-router/.vscode/extensions.json b/typescript-jsx-router/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-router/.vscode/extensions.json +++ b/typescript-jsx-router/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-router/README.md b/typescript-jsx-router/README.md index 1b2c5711..e7ddeacf 100644 --- a/typescript-jsx-router/README.md +++ b/typescript-jsx-router/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-router/package.json b/typescript-jsx-router/package.json index 43143c43..158bcf66 100644 --- a/typescript-jsx-router/package.json +++ b/typescript-jsx-router/package.json @@ -11,18 +11,18 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-vitest-cypress/.vscode/extensions.json b/typescript-jsx-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-vitest-cypress/.vscode/extensions.json +++ b/typescript-jsx-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-vitest-cypress/README.md b/typescript-jsx-vitest-cypress/README.md index 69d98a5c..489d246a 100644 --- a/typescript-jsx-vitest-cypress/README.md +++ b/typescript-jsx-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-vitest-cypress/package.json b/typescript-jsx-vitest-cypress/package.json index c7eaf30a..3ae2a72f 100644 --- a/typescript-jsx-vitest-cypress/package.json +++ b/typescript-jsx-vitest-cypress/package.json @@ -14,23 +14,23 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-vitest-nightwatch/.vscode/extensions.json b/typescript-jsx-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-jsx-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-jsx-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-jsx-vitest-nightwatch/README.md b/typescript-jsx-vitest-nightwatch/README.md index c4dbab74..73b81254 100644 --- a/typescript-jsx-vitest-nightwatch/README.md +++ b/typescript-jsx-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-jsx-vitest-nightwatch/package.json b/typescript-jsx-vitest-nightwatch/package.json index 3b18b69c..99672f9d 100644 --- a/typescript-jsx-vitest-nightwatch/package.json +++ b/typescript-jsx-vitest-nightwatch/package.json @@ -13,27 +13,27 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-vitest-playwright/.vscode/extensions.json b/typescript-jsx-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-jsx-vitest-playwright/.vscode/extensions.json +++ b/typescript-jsx-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-jsx-vitest-playwright/README.md b/typescript-jsx-vitest-playwright/README.md index 94b71b51..1b735880 100644 --- a/typescript-jsx-vitest-playwright/README.md +++ b/typescript-jsx-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-vitest-playwright/package.json b/typescript-jsx-vitest-playwright/package.json index e98d1a18..bb49b2de 100644 --- a/typescript-jsx-vitest-playwright/package.json +++ b/typescript-jsx-vitest-playwright/package.json @@ -13,22 +13,22 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-vitest/.vscode/extensions.json b/typescript-jsx-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-vitest/.vscode/extensions.json +++ b/typescript-jsx-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-vitest/README.md b/typescript-jsx-vitest/README.md index 9c8e9f01..807aa727 100644 --- a/typescript-jsx-vitest/README.md +++ b/typescript-jsx-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx-vitest/package.json b/typescript-jsx-vitest/package.json index 6175d3ee..ea9279f6 100644 --- a/typescript-jsx-vitest/package.json +++ b/typescript-jsx-vitest/package.json @@ -12,21 +12,21 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-with-tests/.vscode/extensions.json b/typescript-jsx-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx-with-tests/.vscode/extensions.json +++ b/typescript-jsx-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx-with-tests/README.md b/typescript-jsx-with-tests/README.md index efb96d69..fd85efcf 100644 --- a/typescript-jsx-with-tests/README.md +++ b/typescript-jsx-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-jsx-with-tests/cypress.config.ts b/typescript-jsx-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-jsx-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-jsx-with-tests/cypress/e2e/example.cy.ts b/typescript-jsx-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-jsx-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-jsx-with-tests/cypress/e2e/tsconfig.json b/typescript-jsx-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-jsx-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-jsx-with-tests/cypress/fixtures/example.json b/typescript-jsx-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-jsx-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-jsx-with-tests/cypress/support/commands.ts b/typescript-jsx-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-jsx-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-jsx-with-tests/cypress/support/e2e.ts b/typescript-jsx-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-jsx-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-jsx-with-tests/package.json b/typescript-jsx-with-tests/package.json index 99aef149..b50dbc24 100644 --- a/typescript-jsx-with-tests/package.json +++ b/typescript-jsx-with-tests/package.json @@ -7,30 +7,21 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", - "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-jsx-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-jsx-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-jsx-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-jsx-with-tests/tsconfig.json b/typescript-jsx-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-jsx-with-tests/tsconfig.json +++ b/typescript-jsx-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-jsx-with-tests/tsconfig.vitest.json b/typescript-jsx-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-jsx-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-jsx-with-tests/vitest.config.ts b/typescript-jsx-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-jsx-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript-jsx/.vscode/extensions.json b/typescript-jsx/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-jsx/.vscode/extensions.json +++ b/typescript-jsx/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-jsx/README.md b/typescript-jsx/README.md index 09436e2e..cc3cb144 100644 --- a/typescript-jsx/README.md +++ b/typescript-jsx/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-jsx/package.json b/typescript-jsx/package.json index b9f221c0..8c532989 100644 --- a/typescript-jsx/package.json +++ b/typescript-jsx/package.json @@ -11,17 +11,17 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vitejs/plugin-vue-jsx": "^3.1.0", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-nightwatch/.vscode/extensions.json b/typescript-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-nightwatch/.vscode/extensions.json +++ b/typescript-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-nightwatch/README.md b/typescript-nightwatch/README.md index e9ca024d..c5cd9173 100644 --- a/typescript-nightwatch/README.md +++ b/typescript-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-nightwatch/package.json b/typescript-nightwatch/package.json index 25984f1e..1d9546e7 100644 --- a/typescript-nightwatch/package.json +++ b/typescript-nightwatch/package.json @@ -13,23 +13,23 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-cypress/.vscode/extensions.json b/typescript-pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-pinia-cypress/.vscode/extensions.json +++ b/typescript-pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-pinia-cypress/README.md b/typescript-pinia-cypress/README.md index e0d8690a..550a9bae 100644 --- a/typescript-pinia-cypress/README.md +++ b/typescript-pinia-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-pinia-cypress/package.json b/typescript-pinia-cypress/package.json index 5d676bfb..2513b9fc 100644 --- a/typescript-pinia-cypress/package.json +++ b/typescript-pinia-cypress/package.json @@ -16,18 +16,18 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-nightwatch/.vscode/extensions.json b/typescript-pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-pinia-nightwatch/.vscode/extensions.json +++ b/typescript-pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-pinia-nightwatch/README.md b/typescript-pinia-nightwatch/README.md index 8f6468d6..93350e30 100644 --- a/typescript-pinia-nightwatch/README.md +++ b/typescript-pinia-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-pinia-nightwatch/package.json b/typescript-pinia-nightwatch/package.json index ccc90839..4c08f137 100644 --- a/typescript-pinia-nightwatch/package.json +++ b/typescript-pinia-nightwatch/package.json @@ -14,23 +14,23 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-playwright/.vscode/extensions.json b/typescript-pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-pinia-playwright/.vscode/extensions.json +++ b/typescript-pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-pinia-playwright/README.md b/typescript-pinia-playwright/README.md index 36afc2db..5646d383 100644 --- a/typescript-pinia-playwright/README.md +++ b/typescript-pinia-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-pinia-playwright/package.json b/typescript-pinia-playwright/package.json index e40d88d1..d86d7eb4 100644 --- a/typescript-pinia-playwright/package.json +++ b/typescript-pinia-playwright/package.json @@ -13,17 +13,17 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-vitest-cypress/.vscode/extensions.json b/typescript-pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-pinia-vitest-cypress/.vscode/extensions.json +++ b/typescript-pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-pinia-vitest-cypress/README.md b/typescript-pinia-vitest-cypress/README.md index 0fede194..ac118f83 100644 --- a/typescript-pinia-vitest-cypress/README.md +++ b/typescript-pinia-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-pinia-vitest-cypress/package.json b/typescript-pinia-vitest-cypress/package.json index 44cd6f6b..fdc3f325 100644 --- a/typescript-pinia-vitest-cypress/package.json +++ b/typescript-pinia-vitest-cypress/package.json @@ -15,22 +15,22 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-vitest-nightwatch/.vscode/extensions.json b/typescript-pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-pinia-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-pinia-vitest-nightwatch/README.md b/typescript-pinia-vitest-nightwatch/README.md index 70e40463..2e046e17 100644 --- a/typescript-pinia-vitest-nightwatch/README.md +++ b/typescript-pinia-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-pinia-vitest-nightwatch/package.json b/typescript-pinia-vitest-nightwatch/package.json index cd75d4d9..db7d3efb 100644 --- a/typescript-pinia-vitest-nightwatch/package.json +++ b/typescript-pinia-vitest-nightwatch/package.json @@ -14,26 +14,26 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-vitest-playwright/.vscode/extensions.json b/typescript-pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-pinia-vitest-playwright/.vscode/extensions.json +++ b/typescript-pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-pinia-vitest-playwright/README.md b/typescript-pinia-vitest-playwright/README.md index 5d406ee5..4560cb1e 100644 --- a/typescript-pinia-vitest-playwright/README.md +++ b/typescript-pinia-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-pinia-vitest-playwright/package.json b/typescript-pinia-vitest-playwright/package.json index 46e42308..6b2d084f 100644 --- a/typescript-pinia-vitest-playwright/package.json +++ b/typescript-pinia-vitest-playwright/package.json @@ -14,21 +14,21 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-vitest/.vscode/extensions.json b/typescript-pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-pinia-vitest/.vscode/extensions.json +++ b/typescript-pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-pinia-vitest/README.md b/typescript-pinia-vitest/README.md index fbe43309..593e2f1e 100644 --- a/typescript-pinia-vitest/README.md +++ b/typescript-pinia-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-pinia-vitest/package.json b/typescript-pinia-vitest/package.json index 6c63f8f4..1a8936ea 100644 --- a/typescript-pinia-vitest/package.json +++ b/typescript-pinia-vitest/package.json @@ -13,20 +13,20 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-with-tests/.vscode/extensions.json b/typescript-pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-pinia-with-tests/.vscode/extensions.json +++ b/typescript-pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-pinia-with-tests/README.md b/typescript-pinia-with-tests/README.md index 6dea2f95..d9240974 100644 --- a/typescript-pinia-with-tests/README.md +++ b/typescript-pinia-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-pinia-with-tests/cypress.config.ts b/typescript-pinia-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-pinia-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-pinia-with-tests/cypress/e2e/example.cy.ts b/typescript-pinia-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-pinia-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-pinia-with-tests/cypress/e2e/tsconfig.json b/typescript-pinia-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-pinia-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-pinia-with-tests/cypress/fixtures/example.json b/typescript-pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-pinia-with-tests/cypress/support/commands.ts b/typescript-pinia-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-pinia-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-pinia-with-tests/cypress/support/e2e.ts b/typescript-pinia-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-pinia-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-pinia-with-tests/package.json b/typescript-pinia-with-tests/package.json index ae8dff5b..a0e44266 100644 --- a/typescript-pinia-with-tests/package.json +++ b/typescript-pinia-with-tests/package.json @@ -7,30 +7,21 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-pinia-with-tests/tsconfig.json b/typescript-pinia-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-pinia-with-tests/tsconfig.json +++ b/typescript-pinia-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-pinia-with-tests/tsconfig.vitest.json b/typescript-pinia-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-pinia-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-pinia-with-tests/vitest.config.ts b/typescript-pinia-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-pinia-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript-pinia/.vscode/extensions.json b/typescript-pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-pinia/.vscode/extensions.json +++ b/typescript-pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-pinia/README.md b/typescript-pinia/README.md index 47428c44..35972e01 100644 --- a/typescript-pinia/README.md +++ b/typescript-pinia/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-pinia/package.json b/typescript-pinia/package.json index 0b87c902..9fc11753 100644 --- a/typescript-pinia/package.json +++ b/typescript-pinia/package.json @@ -12,16 +12,16 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-playwright/.vscode/extensions.json b/typescript-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-playwright/.vscode/extensions.json +++ b/typescript-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-playwright/README.md b/typescript-playwright/README.md index 501c14ee..2d8278df 100644 --- a/typescript-playwright/README.md +++ b/typescript-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-playwright/package.json b/typescript-playwright/package.json index 520a277b..18fbd3cb 100644 --- a/typescript-playwright/package.json +++ b/typescript-playwright/package.json @@ -12,17 +12,17 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-cypress/.vscode/extensions.json b/typescript-router-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-cypress/.vscode/extensions.json +++ b/typescript-router-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-cypress/README.md b/typescript-router-cypress/README.md index 64a9a833..d8deb784 100644 --- a/typescript-router-cypress/README.md +++ b/typescript-router-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-cypress/package.json b/typescript-router-cypress/package.json index 63c202b0..36b9986b 100644 --- a/typescript-router-cypress/package.json +++ b/typescript-router-cypress/package.json @@ -15,19 +15,19 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-nightwatch/.vscode/extensions.json b/typescript-router-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-router-nightwatch/.vscode/extensions.json +++ b/typescript-router-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-router-nightwatch/README.md b/typescript-router-nightwatch/README.md index 66d83750..eefb44c3 100644 --- a/typescript-router-nightwatch/README.md +++ b/typescript-router-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-nightwatch/package.json b/typescript-router-nightwatch/package.json index cc945811..058d6ab3 100644 --- a/typescript-router-nightwatch/package.json +++ b/typescript-router-nightwatch/package.json @@ -13,24 +13,24 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-cypress/.vscode/extensions.json b/typescript-router-pinia-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-pinia-cypress/.vscode/extensions.json +++ b/typescript-router-pinia-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-pinia-cypress/README.md b/typescript-router-pinia-cypress/README.md index 5d2b74d4..26701d10 100644 --- a/typescript-router-pinia-cypress/README.md +++ b/typescript-router-pinia-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-pinia-cypress/package.json b/typescript-router-pinia-cypress/package.json index 5eef8521..58486e3f 100644 --- a/typescript-router-pinia-cypress/package.json +++ b/typescript-router-pinia-cypress/package.json @@ -16,19 +16,19 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "npm-run-all2": "^6.1.1", + "cypress": "^13.6.6", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-nightwatch/.vscode/extensions.json b/typescript-router-pinia-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-router-pinia-nightwatch/.vscode/extensions.json +++ b/typescript-router-pinia-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-router-pinia-nightwatch/README.md b/typescript-router-pinia-nightwatch/README.md index 7b3a9169..a8f1fe16 100644 --- a/typescript-router-pinia-nightwatch/README.md +++ b/typescript-router-pinia-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-pinia-nightwatch/package.json b/typescript-router-pinia-nightwatch/package.json index 2f590f81..ce0bea8e 100644 --- a/typescript-router-pinia-nightwatch/package.json +++ b/typescript-router-pinia-nightwatch/package.json @@ -14,24 +14,24 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vue-tsc": "^1.8.27" + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-playwright/.vscode/extensions.json b/typescript-router-pinia-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-router-pinia-playwright/.vscode/extensions.json +++ b/typescript-router-pinia-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-router-pinia-playwright/README.md b/typescript-router-pinia-playwright/README.md index 4a15f9b3..4a6b2e7f 100644 --- a/typescript-router-pinia-playwright/README.md +++ b/typescript-router-pinia-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-pinia-playwright/package.json b/typescript-router-pinia-playwright/package.json index aef371a7..a5c5d9c0 100644 --- a/typescript-router-pinia-playwright/package.json +++ b/typescript-router-pinia-playwright/package.json @@ -13,18 +13,18 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-vitest-cypress/.vscode/extensions.json b/typescript-router-pinia-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-pinia-vitest-cypress/.vscode/extensions.json +++ b/typescript-router-pinia-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-pinia-vitest-cypress/README.md b/typescript-router-pinia-vitest-cypress/README.md index 462f5441..c448c483 100644 --- a/typescript-router-pinia-vitest-cypress/README.md +++ b/typescript-router-pinia-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-pinia-vitest-cypress/package.json b/typescript-router-pinia-vitest-cypress/package.json index 868900ff..0709ef4b 100644 --- a/typescript-router-pinia-vitest-cypress/package.json +++ b/typescript-router-pinia-vitest-cypress/package.json @@ -15,23 +15,23 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-vitest-nightwatch/.vscode/extensions.json b/typescript-router-pinia-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-router-pinia-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-router-pinia-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-router-pinia-vitest-nightwatch/README.md b/typescript-router-pinia-vitest-nightwatch/README.md index 60ac018e..3f8b7f77 100644 --- a/typescript-router-pinia-vitest-nightwatch/README.md +++ b/typescript-router-pinia-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-router-pinia-vitest-nightwatch/package.json b/typescript-router-pinia-vitest-nightwatch/package.json index 1c42d38d..a3b51ab7 100644 --- a/typescript-router-pinia-vitest-nightwatch/package.json +++ b/typescript-router-pinia-vitest-nightwatch/package.json @@ -14,27 +14,27 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-vitest-playwright/.vscode/extensions.json b/typescript-router-pinia-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-router-pinia-vitest-playwright/.vscode/extensions.json +++ b/typescript-router-pinia-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-router-pinia-vitest-playwright/README.md b/typescript-router-pinia-vitest-playwright/README.md index cdff825b..ddf05470 100644 --- a/typescript-router-pinia-vitest-playwright/README.md +++ b/typescript-router-pinia-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-pinia-vitest-playwright/package.json b/typescript-router-pinia-vitest-playwright/package.json index d713aaa8..dfff7a52 100644 --- a/typescript-router-pinia-vitest-playwright/package.json +++ b/typescript-router-pinia-vitest-playwright/package.json @@ -14,22 +14,22 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-vitest/.vscode/extensions.json b/typescript-router-pinia-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-pinia-vitest/.vscode/extensions.json +++ b/typescript-router-pinia-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-pinia-vitest/README.md b/typescript-router-pinia-vitest/README.md index 5277cebf..62172ef4 100644 --- a/typescript-router-pinia-vitest/README.md +++ b/typescript-router-pinia-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-pinia-vitest/package.json b/typescript-router-pinia-vitest/package.json index 0329234c..5dbe1d46 100644 --- a/typescript-router-pinia-vitest/package.json +++ b/typescript-router-pinia-vitest/package.json @@ -13,21 +13,21 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-with-tests/.vscode/extensions.json b/typescript-router-pinia-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-pinia-with-tests/.vscode/extensions.json +++ b/typescript-router-pinia-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-pinia-with-tests/README.md b/typescript-router-pinia-with-tests/README.md index b664aa57..cdac63ca 100644 --- a/typescript-router-pinia-with-tests/README.md +++ b/typescript-router-pinia-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-router-pinia-with-tests/cypress.config.ts b/typescript-router-pinia-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-router-pinia-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-router-pinia-with-tests/cypress/e2e/example.cy.ts b/typescript-router-pinia-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-router-pinia-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-router-pinia-with-tests/cypress/e2e/tsconfig.json b/typescript-router-pinia-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-router-pinia-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-router-pinia-with-tests/cypress/fixtures/example.json b/typescript-router-pinia-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-router-pinia-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-router-pinia-with-tests/cypress/support/commands.ts b/typescript-router-pinia-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-router-pinia-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-router-pinia-with-tests/cypress/support/e2e.ts b/typescript-router-pinia-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-router-pinia-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-router-pinia-with-tests/package.json b/typescript-router-pinia-with-tests/package.json index 1c2c22d6..87c9fd29 100644 --- a/typescript-router-pinia-with-tests/package.json +++ b/typescript-router-pinia-with-tests/package.json @@ -7,31 +7,22 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-router-pinia-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-router-pinia-with-tests/tsconfig.json b/typescript-router-pinia-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-router-pinia-with-tests/tsconfig.json +++ b/typescript-router-pinia-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-router-pinia-with-tests/tsconfig.vitest.json b/typescript-router-pinia-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-router-pinia-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-router-pinia-with-tests/vitest.config.ts b/typescript-router-pinia-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-router-pinia-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript-router-pinia/.vscode/extensions.json b/typescript-router-pinia/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-pinia/.vscode/extensions.json +++ b/typescript-router-pinia/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-pinia/README.md b/typescript-router-pinia/README.md index 4f731fff..6f4f5b9f 100644 --- a/typescript-router-pinia/README.md +++ b/typescript-router-pinia/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-pinia/package.json b/typescript-router-pinia/package.json index c4f0775f..2347f5f2 100644 --- a/typescript-router-pinia/package.json +++ b/typescript-router-pinia/package.json @@ -12,17 +12,17 @@ }, "dependencies": { "pinia": "^2.1.7", - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-playwright/.vscode/extensions.json b/typescript-router-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-router-playwright/.vscode/extensions.json +++ b/typescript-router-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-router-playwright/README.md b/typescript-router-playwright/README.md index 66baddb0..4dcff6b5 100644 --- a/typescript-router-playwright/README.md +++ b/typescript-router-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-playwright/package.json b/typescript-router-playwright/package.json index f0795c94..22db173d 100644 --- a/typescript-router-playwright/package.json +++ b/typescript-router-playwright/package.json @@ -12,18 +12,18 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-vitest-cypress/.vscode/extensions.json b/typescript-router-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-vitest-cypress/.vscode/extensions.json +++ b/typescript-router-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-vitest-cypress/README.md b/typescript-router-vitest-cypress/README.md index 1766beb7..04327ffa 100644 --- a/typescript-router-vitest-cypress/README.md +++ b/typescript-router-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-vitest-cypress/package.json b/typescript-router-vitest-cypress/package.json index 1478b568..f4af277a 100644 --- a/typescript-router-vitest-cypress/package.json +++ b/typescript-router-vitest-cypress/package.json @@ -14,23 +14,23 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-vitest-nightwatch/.vscode/extensions.json b/typescript-router-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-router-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-router-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-router-vitest-nightwatch/README.md b/typescript-router-vitest-nightwatch/README.md index 0fab55c1..3d4c324b 100644 --- a/typescript-router-vitest-nightwatch/README.md +++ b/typescript-router-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-router-vitest-nightwatch/package.json b/typescript-router-vitest-nightwatch/package.json index 7fd8a523..59bd1f1d 100644 --- a/typescript-router-vitest-nightwatch/package.json +++ b/typescript-router-vitest-nightwatch/package.json @@ -13,27 +13,27 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-vitest-playwright/.vscode/extensions.json b/typescript-router-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-router-vitest-playwright/.vscode/extensions.json +++ b/typescript-router-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-router-vitest-playwright/README.md b/typescript-router-vitest-playwright/README.md index ab27a98e..8e0eb582 100644 --- a/typescript-router-vitest-playwright/README.md +++ b/typescript-router-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-vitest-playwright/package.json b/typescript-router-vitest-playwright/package.json index e2d42efa..a0d9fcf3 100644 --- a/typescript-router-vitest-playwright/package.json +++ b/typescript-router-vitest-playwright/package.json @@ -13,22 +13,22 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-vitest/.vscode/extensions.json b/typescript-router-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-vitest/.vscode/extensions.json +++ b/typescript-router-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-vitest/README.md b/typescript-router-vitest/README.md index 730ad8fc..b53b249e 100644 --- a/typescript-router-vitest/README.md +++ b/typescript-router-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router-vitest/package.json b/typescript-router-vitest/package.json index 4d55cddf..c8888251 100644 --- a/typescript-router-vitest/package.json +++ b/typescript-router-vitest/package.json @@ -12,21 +12,21 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-with-tests/.vscode/extensions.json b/typescript-router-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router-with-tests/.vscode/extensions.json +++ b/typescript-router-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router-with-tests/README.md b/typescript-router-with-tests/README.md index 4b1d6d9d..39fc72c2 100644 --- a/typescript-router-with-tests/README.md +++ b/typescript-router-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-router-with-tests/cypress.config.ts b/typescript-router-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-router-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-router-with-tests/cypress/e2e/example.cy.ts b/typescript-router-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-router-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-router-with-tests/cypress/e2e/tsconfig.json b/typescript-router-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-router-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-router-with-tests/cypress/fixtures/example.json b/typescript-router-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-router-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-router-with-tests/cypress/support/commands.ts b/typescript-router-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-router-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-router-with-tests/cypress/support/e2e.ts b/typescript-router-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-router-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-router-with-tests/package.json b/typescript-router-with-tests/package.json index c39dc5ad..aa1ce93d 100644 --- a/typescript-router-with-tests/package.json +++ b/typescript-router-with-tests/package.json @@ -7,30 +7,21 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-router-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-router-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-router-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-router-with-tests/tsconfig.json b/typescript-router-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-router-with-tests/tsconfig.json +++ b/typescript-router-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-router-with-tests/tsconfig.vitest.json b/typescript-router-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-router-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-router-with-tests/vitest.config.ts b/typescript-router-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-router-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript-router/.vscode/extensions.json b/typescript-router/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-router/.vscode/extensions.json +++ b/typescript-router/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-router/README.md b/typescript-router/README.md index 3fd6ad11..a1b1a610 100644 --- a/typescript-router/README.md +++ b/typescript-router/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-router/package.json b/typescript-router/package.json index a5d1fb6c..8dd57f91 100644 --- a/typescript-router/package.json +++ b/typescript-router/package.json @@ -11,17 +11,17 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15", - "vue-router": "^4.2.5" + "vue": "^3.4.21", + "vue-router": "^4.3.0" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-vitest-cypress/.vscode/extensions.json b/typescript-vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-vitest-cypress/.vscode/extensions.json +++ b/typescript-vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-vitest-cypress/README.md b/typescript-vitest-cypress/README.md index 03d30ecc..51625d41 100644 --- a/typescript-vitest-cypress/README.md +++ b/typescript-vitest-cypress/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-vitest-cypress/package.json b/typescript-vitest-cypress/package.json index 57ac3f21..f1f09139 100644 --- a/typescript-vitest-cypress/package.json +++ b/typescript-vitest-cypress/package.json @@ -14,22 +14,22 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", + "npm-run-all2": "^6.1.2", "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-vitest-nightwatch/.vscode/extensions.json b/typescript-vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/typescript-vitest-nightwatch/.vscode/extensions.json +++ b/typescript-vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/typescript-vitest-nightwatch/README.md b/typescript-vitest-nightwatch/README.md index f4abca0d..f29d0d23 100644 --- a/typescript-vitest-nightwatch/README.md +++ b/typescript-vitest-nightwatch/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -60,10 +53,4 @@ pnpm test:e2e tests/e2e/example.ts # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/typescript-vitest-nightwatch/package.json b/typescript-vitest-nightwatch/package.json index b09b4739..a09be2e3 100644 --- a/typescript-vitest-nightwatch/package.json +++ b/typescript-vitest-nightwatch/package.json @@ -13,26 +13,26 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", - "npm-run-all2": "^6.1.1", + "nightwatch": "^3.4.1", + "npm-run-all2": "^6.1.2", "ts-node": "^10.9.2", - "typescript": "~5.3.0", - "vite": "^5.0.11", + "typescript": "~5.4.0", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-vitest-playwright/.vscode/extensions.json b/typescript-vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/typescript-vitest-playwright/.vscode/extensions.json +++ b/typescript-vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/typescript-vitest-playwright/README.md b/typescript-vitest-playwright/README.md index cdad7621..5477cde1 100644 --- a/typescript-vitest-playwright/README.md +++ b/typescript-vitest-playwright/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-vitest-playwright/package.json b/typescript-vitest-playwright/package.json index c3c231b4..2c8529cc 100644 --- a/typescript-vitest-playwright/package.json +++ b/typescript-vitest-playwright/package.json @@ -13,21 +13,21 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", + "@playwright/test": "^1.42.1", "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-vitest/.vscode/extensions.json b/typescript-vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-vitest/.vscode/extensions.json +++ b/typescript-vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-vitest/README.md b/typescript-vitest/README.md index 1a8cd39b..e02f9a98 100644 --- a/typescript-vitest/README.md +++ b/typescript-vitest/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript-vitest/package.json b/typescript-vitest/package.json index fb77d6a7..7104235b 100644 --- a/typescript-vitest/package.json +++ b/typescript-vitest/package.json @@ -12,20 +12,20 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "@vue/tsconfig": "^0.5.1", "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vitest": "^1.3.1", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-with-tests/.vscode/extensions.json b/typescript-with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript-with-tests/.vscode/extensions.json +++ b/typescript-with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript-with-tests/README.md b/typescript-with-tests/README.md index feca9e18..09808331 100644 --- a/typescript-with-tests/README.md +++ b/typescript-with-tests/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration @@ -38,25 +31,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/typescript-with-tests/cypress.config.ts b/typescript-with-tests/cypress.config.ts deleted file mode 100644 index 0f66080f..00000000 --- a/typescript-with-tests/cypress.config.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/typescript-with-tests/cypress/e2e/example.cy.ts b/typescript-with-tests/cypress/e2e/example.cy.ts deleted file mode 100644 index 7554c35d..00000000 --- a/typescript-with-tests/cypress/e2e/example.cy.ts +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/typescript-with-tests/cypress/e2e/tsconfig.json b/typescript-with-tests/cypress/e2e/tsconfig.json deleted file mode 100644 index 37748feb..00000000 --- a/typescript-with-tests/cypress/e2e/tsconfig.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.dom.json", - "include": ["./**/*", "../support/**/*"], - "compilerOptions": { - "isolatedModules": false, - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - } -} diff --git a/typescript-with-tests/cypress/fixtures/example.json b/typescript-with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/typescript-with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/typescript-with-tests/cypress/support/commands.ts b/typescript-with-tests/cypress/support/commands.ts deleted file mode 100644 index 9b7bb8e2..00000000 --- a/typescript-with-tests/cypress/support/commands.ts +++ /dev/null @@ -1,39 +0,0 @@ -/// -// *********************************************** -// This example commands.ts shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) -// -// declare global { -// namespace Cypress { -// interface Chainable { -// login(email: string, password: string): Chainable -// drag(subject: string, options?: Partial): Chainable -// dismiss(subject: string, options?: Partial): Chainable -// visit(originalFn: CommandOriginalFn, url: string, options: Partial): Chainable -// } -// } -// } - -export {} diff --git a/typescript-with-tests/cypress/support/e2e.ts b/typescript-with-tests/cypress/support/e2e.ts deleted file mode 100644 index d68db96d..00000000 --- a/typescript-with-tests/cypress/support/e2e.ts +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/typescript-with-tests/package.json b/typescript-with-tests/package.json index bc133b52..13660080 100644 --- a/typescript-with-tests/package.json +++ b/typescript-with-tests/package.json @@ -7,29 +7,20 @@ "dev": "vite", "build": "run-p type-check \"build-only {@}\" --", "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'", "build-only": "vite build", "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/jsdom": "^21.1.6", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "npm-run-all2": "^6.1.1", - "start-server-and-test": "^2.0.3", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vitest": "^1.2.2", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/typescript-with-tests/src/components/__tests__/HelloWorld.spec.ts b/typescript-with-tests/src/components/__tests__/HelloWorld.spec.ts deleted file mode 100644 index 25332020..00000000 --- a/typescript-with-tests/src/components/__tests__/HelloWorld.spec.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/typescript-with-tests/tsconfig.json b/typescript-with-tests/tsconfig.json index 5304731b..66b5e570 100644 --- a/typescript-with-tests/tsconfig.json +++ b/typescript-with-tests/tsconfig.json @@ -6,12 +6,6 @@ }, { "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.vitest.json" } - ], - "compilerOptions": { - "module": "NodeNext" - } + ] } diff --git a/typescript-with-tests/tsconfig.vitest.json b/typescript-with-tests/tsconfig.vitest.json deleted file mode 100644 index 571995d1..00000000 --- a/typescript-with-tests/tsconfig.vitest.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "extends": "./tsconfig.app.json", - "exclude": [], - "compilerOptions": { - "composite": true, - "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.vitest.tsbuildinfo", - - "lib": [], - "types": ["node", "jsdom"] - } -} diff --git a/typescript-with-tests/vitest.config.ts b/typescript-with-tests/vitest.config.ts deleted file mode 100644 index 10067d57..00000000 --- a/typescript-with-tests/vitest.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -) diff --git a/typescript/.vscode/extensions.json b/typescript/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/typescript/.vscode/extensions.json +++ b/typescript/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/typescript/README.md b/typescript/README.md index 734ce2d1..4c0c0e06 100644 --- a/typescript/README.md +++ b/typescript/README.md @@ -4,18 +4,11 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS -TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types. - -If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps: - -1. Disable the built-in TypeScript Extension - 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette - 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)` -2. Reload the VSCode window by running `Developer: Reload Window` from the command palette. +TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration diff --git a/typescript/package.json b/typescript/package.json index fbe2d930..e9a148bc 100644 --- a/typescript/package.json +++ b/typescript/package.json @@ -11,16 +11,16 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@tsconfig/node20": "^20.1.2", - "@types/node": "^20.11.10", - "@vitejs/plugin-vue": "^5.0.3", + "@types/node": "^20.11.25", + "@vitejs/plugin-vue": "^5.0.4", "@vue/tsconfig": "^0.5.1", - "npm-run-all2": "^6.1.1", - "typescript": "~5.3.0", - "vite": "^5.0.11", - "vue-tsc": "^1.8.27" + "npm-run-all2": "^6.1.2", + "typescript": "~5.4.0", + "vite": "^5.1.5", + "vue-tsc": "^2.0.6" } } diff --git a/vitest-cypress/.vscode/extensions.json b/vitest-cypress/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/vitest-cypress/.vscode/extensions.json +++ b/vitest-cypress/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/vitest-cypress/README.md b/vitest-cypress/README.md index e0268627..35b1b931 100644 --- a/vitest-cypress/README.md +++ b/vitest-cypress/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/vitest-cypress/package.json b/vitest-cypress/package.json index e149435f..fba7163e 100644 --- a/vitest-cypress/package.json +++ b/vitest-cypress/package.json @@ -12,15 +12,15 @@ "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", + "cypress": "^13.6.6", "jsdom": "^24.0.0", "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/vitest-nightwatch/.vscode/extensions.json b/vitest-nightwatch/.vscode/extensions.json index 5306b066..dcb4210d 100644 --- a/vitest-nightwatch/.vscode/extensions.json +++ b/vitest-nightwatch/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "browserstackcom.nightwatch" ] } diff --git a/vitest-nightwatch/README.md b/vitest-nightwatch/README.md index 62676745..56c578fc 100644 --- a/vitest-nightwatch/README.md +++ b/vitest-nightwatch/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -49,10 +49,4 @@ pnpm test:e2e tests/e2e/example.js # Runs the tests in debug mode pnpm test:e2e --debug ``` - -### Run Headed Component Tests with [Nightwatch Component Testing](https://nightwatchjs.org/guide/component-testing/introduction.html) - -```sh -pnpm test:unit -pnpm test:unit -- --headless # for headless testing -``` + \ No newline at end of file diff --git a/vitest-nightwatch/package.json b/vitest-nightwatch/package.json index 602970e4..45b6c537 100644 --- a/vitest-nightwatch/package.json +++ b/vitest-nightwatch/package.json @@ -11,19 +11,19 @@ "test:e2e": "nightwatch tests/e2e/*" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { "@nightwatch/vue": "^3.1.0", - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", - "chromedriver": "^121.0.0", - "geckodriver": "^4.3.1", + "chromedriver": "^122.0.4", + "geckodriver": "^4.3.3", "jsdom": "^24.0.0", - "nightwatch": "^3.4.0", + "nightwatch": "^3.4.1", "ts-node": "^10.9.2", - "vite": "^5.0.11", + "vite": "^5.1.5", "vite-plugin-nightwatch": "^0.4.6", - "vitest": "^1.2.2" + "vitest": "^1.3.1" } } diff --git a/vitest-playwright/.vscode/extensions.json b/vitest-playwright/.vscode/extensions.json index 2d5fffc2..928458fb 100644 --- a/vitest-playwright/.vscode/extensions.json +++ b/vitest-playwright/.vscode/extensions.json @@ -1,7 +1,6 @@ { "recommendations": [ "Vue.volar", - "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } diff --git a/vitest-playwright/README.md b/vitest-playwright/README.md index ba4197ff..e26f4452 100644 --- a/vitest-playwright/README.md +++ b/vitest-playwright/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/vitest-playwright/package.json b/vitest-playwright/package.json index 2c71f771..2dc2e4e2 100644 --- a/vitest-playwright/package.json +++ b/vitest-playwright/package.json @@ -11,14 +11,14 @@ "test:e2e": "playwright test" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@playwright/test": "^1.41.1", - "@vitejs/plugin-vue": "^5.0.3", + "@playwright/test": "^1.42.1", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/vitest/.vscode/extensions.json b/vitest/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/vitest/.vscode/extensions.json +++ b/vitest/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/vitest/README.md b/vitest/README.md index 48871df5..829c5879 100644 --- a/vitest/README.md +++ b/vitest/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration diff --git a/vitest/package.json b/vitest/package.json index c1370e1e..df6c0bbb 100644 --- a/vitest/package.json +++ b/vitest/package.json @@ -10,13 +10,13 @@ "test:unit": "vitest" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", + "@vitejs/plugin-vue": "^5.0.4", "@vue/test-utils": "^2.4.4", "jsdom": "^24.0.0", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "vite": "^5.1.5", + "vitest": "^1.3.1" } } diff --git a/with-tests/.vscode/extensions.json b/with-tests/.vscode/extensions.json index c0a6e5a4..a7cea0b0 100644 --- a/with-tests/.vscode/extensions.json +++ b/with-tests/.vscode/extensions.json @@ -1,3 +1,3 @@ { - "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] + "recommendations": ["Vue.volar"] } diff --git a/with-tests/README.md b/with-tests/README.md index 3f1c26fb..16f7c457 100644 --- a/with-tests/README.md +++ b/with-tests/README.md @@ -4,7 +4,7 @@ This template should help get you started developing with Vue 3 in Vite. ## Recommended IDE Setup -[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin). +[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Customize configuration @@ -27,25 +27,3 @@ pnpm dev ```sh pnpm build ``` - -### Run Unit Tests with [Vitest](https://vitest.dev/) - -```sh -pnpm test:unit -``` - -### Run End-to-End Tests with [Cypress](https://www.cypress.io/) - -```sh -pnpm test:e2e:dev -``` - -This runs the end-to-end tests against the Vite development server. -It is much faster than the production build. - -But it's still recommended to test the production build with `test:e2e` before deploying (e.g. in CI environments): - -```sh -pnpm build -pnpm test:e2e -``` diff --git a/with-tests/cypress.config.js b/with-tests/cypress.config.js deleted file mode 100644 index 0f66080f..00000000 --- a/with-tests/cypress.config.js +++ /dev/null @@ -1,8 +0,0 @@ -import { defineConfig } from 'cypress' - -export default defineConfig({ - e2e: { - specPattern: 'cypress/e2e/**/*.{cy,spec}.{js,jsx,ts,tsx}', - baseUrl: 'http://localhost:4173' - } -}) diff --git a/with-tests/cypress/e2e/example.cy.js b/with-tests/cypress/e2e/example.cy.js deleted file mode 100644 index 7554c35d..00000000 --- a/with-tests/cypress/e2e/example.cy.js +++ /dev/null @@ -1,8 +0,0 @@ -// https://on.cypress.io/api - -describe('My First Test', () => { - it('visits the app root url', () => { - cy.visit('/') - cy.contains('h1', 'You did it!') - }) -}) diff --git a/with-tests/cypress/e2e/jsconfig.json b/with-tests/cypress/e2e/jsconfig.json deleted file mode 100644 index c790a70d..00000000 --- a/with-tests/cypress/e2e/jsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["./**/*", "../support/**/*"] -} diff --git a/with-tests/cypress/fixtures/example.json b/with-tests/cypress/fixtures/example.json deleted file mode 100644 index 02e42543..00000000 --- a/with-tests/cypress/fixtures/example.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "name": "Using fixtures to represent data", - "email": "hello@cypress.io", - "body": "Fixtures are a great way to mock data for responses to routes" -} diff --git a/with-tests/cypress/support/commands.js b/with-tests/cypress/support/commands.js deleted file mode 100644 index 119ab03f..00000000 --- a/with-tests/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add('login', (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This will overwrite an existing command -- -// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) diff --git a/with-tests/cypress/support/e2e.js b/with-tests/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/with-tests/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/with-tests/package.json b/with-tests/package.json index ccb30d9a..63ebcaa4 100644 --- a/with-tests/package.json +++ b/with-tests/package.json @@ -6,21 +6,13 @@ "scripts": { "dev": "vite", "build": "vite build", - "preview": "vite preview", - "test:unit": "vitest", - "test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'", - "test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'" + "preview": "vite preview" }, "dependencies": { - "vue": "^3.4.15" + "vue": "^3.4.21" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.3", - "@vue/test-utils": "^2.4.4", - "cypress": "^13.6.3", - "jsdom": "^24.0.0", - "start-server-and-test": "^2.0.3", - "vite": "^5.0.11", - "vitest": "^1.2.2" + "@vitejs/plugin-vue": "^5.0.4", + "vite": "^5.1.5" } } diff --git a/with-tests/src/components/__tests__/HelloWorld.spec.js b/with-tests/src/components/__tests__/HelloWorld.spec.js deleted file mode 100644 index 25332020..00000000 --- a/with-tests/src/components/__tests__/HelloWorld.spec.js +++ /dev/null @@ -1,11 +0,0 @@ -import { describe, it, expect } from 'vitest' - -import { mount } from '@vue/test-utils' -import HelloWorld from '../HelloWorld.vue' - -describe('HelloWorld', () => { - it('renders properly', () => { - const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } }) - expect(wrapper.text()).toContain('Hello Vitest') - }) -}) diff --git a/with-tests/vitest.config.js b/with-tests/vitest.config.js deleted file mode 100644 index 10067d57..00000000 --- a/with-tests/vitest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -import { fileURLToPath } from 'node:url' -import { mergeConfig, defineConfig, configDefaults } from 'vitest/config' -import viteConfig from './vite.config' - -export default mergeConfig( - viteConfig, - defineConfig({ - test: { - environment: 'jsdom', - exclude: [...configDefaults.exclude, 'e2e/*'], - root: fileURLToPath(new URL('./', import.meta.url)) - } - }) -)