Skip to content

Commit

Permalink
version 3.12.1 snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
haoqunjiang committed Nov 8, 2024
1 parent fe12787 commit 9a16422
Show file tree
Hide file tree
Showing 397 changed files with 2,087 additions and 1,211 deletions.
3 changes: 2 additions & 1 deletion cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"@vitejs/plugin-vue": "^5.1.4",
"cypress": "^13.15.1",
"start-server-and-test": "^2.0.8",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions cypress/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions default/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion eslint-with-prettier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"prettier": "^3.3.3",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions eslint-with-prettier/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion eslint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^9.30.0",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions eslint/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import { fileURLToPath, URL } from 'node:url'

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion jsx-cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"@vitejs/plugin-vue-jsx": "^4.0.1",
"cypress": "^13.15.1",
"start-server-and-test": "^2.0.8",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-cypress/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion jsx-nightwatch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"nightwatch": "^3.8.1",
"ts-node": "^10.9.2",
"vite": "^5.4.10",
"vite-plugin-nightwatch": "^0.4.6"
"vite-plugin-nightwatch": "^0.4.6",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-nightwatch/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'
import nightwatchPlugin from 'vite-plugin-nightwatch'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
nightwatchPlugin({
renderPage: './nightwatch/index.html'
}),
Expand Down
3 changes: 2 additions & 1 deletion jsx-pinia-cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@vitejs/plugin-vue-jsx": "^4.0.1",
"cypress": "^13.15.1",
"start-server-and-test": "^2.0.8",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-cypress/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion jsx-pinia-nightwatch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"nightwatch": "^3.8.1",
"ts-node": "^10.9.2",
"vite": "^5.4.10",
"vite-plugin-nightwatch": "^0.4.6"
"vite-plugin-nightwatch": "^0.4.6",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-nightwatch/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'
import nightwatchPlugin from 'vite-plugin-nightwatch'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
nightwatchPlugin({
renderPage: './nightwatch/index.html'
}),
Expand Down
3 changes: 2 additions & 1 deletion jsx-pinia-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@playwright/test": "^1.48.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-playwright/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
1 change: 1 addition & 0 deletions jsx-pinia-vitest-cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"jsdom": "^25.0.1",
"start-server-and-test": "^2.0.8",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4",
"vitest": "^2.1.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-vitest-cypress/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
1 change: 1 addition & 0 deletions jsx-pinia-vitest-nightwatch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"ts-node": "^10.9.2",
"vite": "^5.4.10",
"vite-plugin-nightwatch": "^0.4.6",
"vite-plugin-vue-devtools": "^7.5.4",
"vitest": "^2.1.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-vitest-nightwatch/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'
import nightwatchPlugin from 'vite-plugin-nightwatch'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
nightwatchPlugin(),
],
resolve: {
Expand Down
1 change: 1 addition & 0 deletions jsx-pinia-vitest-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@vue/test-utils": "^2.4.6",
"jsdom": "^25.0.1",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4",
"vitest": "^2.1.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-vitest-playwright/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
1 change: 1 addition & 0 deletions jsx-pinia-vitest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"@vue/test-utils": "^2.4.6",
"jsdom": "^25.0.1",
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4",
"vitest": "^2.1.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-vitest/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion jsx-pinia-with-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia-with-tests/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion jsx-pinia/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-pinia/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion jsx-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"@playwright/test": "^1.48.2",
"@vitejs/plugin-vue": "^5.1.4",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
2 changes: 2 additions & 0 deletions jsx-playwright/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools'

// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
vueJsx(),
vueDevTools(),
],
resolve: {
alias: {
Expand Down
3 changes: 2 additions & 1 deletion jsx-router-cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@vitejs/plugin-vue-jsx": "^4.0.1",
"cypress": "^13.15.1",
"start-server-and-test": "^2.0.8",
"vite": "^5.4.10"
"vite": "^5.4.10",
"vite-plugin-vue-devtools": "^7.5.4"
}
}
Loading

0 comments on commit 9a16422

Please sign in to comment.