Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0bbf78f

Browse filesBrowse files
committed
version 2.2.0 snapshot
1 parent 04d0c60 commit 0bbf78f
Copy full SHA for 0bbf78f

File tree

160 files changed

+752
-672
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner

160 files changed

+752
-672
lines changed

‎cypress/package.json

Copy file name to clipboardExpand all lines: cypress/package.json
+6-5Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,20 @@
55
"dev": "vite",
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
8-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
9-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'",
8+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
9+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
1010
"test:unit": "cypress open --component",
1111
"test:unit:ci": "cypress run --component --quiet --reporter spec"
1212
},
1313
"dependencies": {
14-
"vue": "^2.7.4"
14+
"vue": "^2.7.7"
1515
},
1616
"devDependencies": {
17-
"@vitejs/plugin-legacy": "^1.8.2",
17+
"@vitejs/plugin-legacy": "^2.0.0",
1818
"@vitejs/plugin-vue2": "^1.1.2",
1919
"cypress": "^10.3.0",
2020
"start-server-and-test": "^1.14.0",
21-
"vite": "^2.9.14"
21+
"terser": "^5.14.2",
22+
"vite": "^3.0.2"
2223
}
2324
}

‎cypress/vite.config.js

Copy file name to clipboardExpand all lines: cypress/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎default/package.json

Copy file name to clipboardExpand all lines: default/package.json
+4-3Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@
77
"preview": "vite preview --port 4173"
88
},
99
"dependencies": {
10-
"vue": "^2.7.4"
10+
"vue": "^2.7.7"
1111
},
1212
"devDependencies": {
13-
"@vitejs/plugin-legacy": "^1.8.2",
13+
"@vitejs/plugin-legacy": "^2.0.0",
1414
"@vitejs/plugin-vue2": "^1.1.2",
15-
"vite": "^2.9.14"
15+
"terser": "^5.14.2",
16+
"vite": "^3.0.2"
1617
}
1718
}

‎default/vite.config.js

Copy file name to clipboardExpand all lines: default/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-cypress/package.json

Copy file name to clipboardExpand all lines: jsx-cypress/package.json
+7-6Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@
55
"dev": "vite",
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
8-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
9-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'",
8+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
9+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
1010
"test:unit": "cypress open --component",
1111
"test:unit:ci": "cypress run --component --quiet --reporter spec"
1212
},
1313
"dependencies": {
14-
"vue": "^2.7.4"
14+
"vue": "^2.7.7"
1515
},
1616
"devDependencies": {
17-
"@vitejs/plugin-legacy": "^1.8.2",
17+
"@vitejs/plugin-legacy": "^2.0.0",
1818
"@vitejs/plugin-vue2": "^1.1.2",
19-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
19+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
2020
"cypress": "^10.3.0",
2121
"start-server-and-test": "^1.14.0",
22-
"vite": "^2.9.14"
22+
"terser": "^5.14.2",
23+
"vite": "^3.0.2"
2324
}
2425
}

‎jsx-cypress/vite.config.js

Copy file name to clipboardExpand all lines: jsx-cypress/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-pinia-cypress/package.json

Copy file name to clipboardExpand all lines: jsx-pinia-cypress/package.json
+8-7Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,22 @@
55
"dev": "vite",
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
8-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
9-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'",
8+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
9+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
1010
"test:unit": "cypress open --component",
1111
"test:unit:ci": "cypress run --component --quiet --reporter spec"
1212
},
1313
"dependencies": {
14-
"pinia": "^2.0.14",
15-
"vue": "^2.7.4"
14+
"pinia": "^2.0.16",
15+
"vue": "^2.7.7"
1616
},
1717
"devDependencies": {
18-
"@vitejs/plugin-legacy": "^1.8.2",
18+
"@vitejs/plugin-legacy": "^2.0.0",
1919
"@vitejs/plugin-vue2": "^1.1.2",
20-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
20+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
2121
"cypress": "^10.3.0",
2222
"start-server-and-test": "^1.14.0",
23-
"vite": "^2.9.14"
23+
"terser": "^5.14.2",
24+
"vite": "^3.0.2"
2425
}
2526
}

‎jsx-pinia-cypress/vite.config.js

Copy file name to clipboardExpand all lines: jsx-pinia-cypress/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-pinia-vitest-cypress/package.json

Copy file name to clipboardExpand all lines: jsx-pinia-vitest-cypress/package.json
+10-9Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,24 @@
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
88
"test:unit": "vitest --environment jsdom",
9-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
10-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'"
9+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
10+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'"
1111
},
1212
"dependencies": {
13-
"pinia": "^2.0.14",
14-
"vue": "^2.7.4"
13+
"pinia": "^2.0.16",
14+
"vue": "^2.7.7"
1515
},
1616
"devDependencies": {
17-
"@vitejs/plugin-legacy": "^1.8.2",
17+
"@vitejs/plugin-legacy": "^2.0.0",
1818
"@vitejs/plugin-vue2": "^1.1.2",
19-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
19+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
2020
"@vue/test-utils": "^1.3.0",
2121
"cypress": "^10.3.0",
2222
"jsdom": "^20.0.0",
2323
"start-server-and-test": "^1.14.0",
24-
"vite": "^2.9.14",
25-
"vitest": "^0.18.0",
26-
"vue-template-compiler": "^2.7.4"
24+
"terser": "^5.14.2",
25+
"vite": "^3.0.2",
26+
"vitest": "^0.18.1",
27+
"vue-template-compiler": "^2.7.7"
2728
}
2829
}

‎jsx-pinia-vitest-cypress/vite.config.js

Copy file name to clipboardExpand all lines: jsx-pinia-vitest-cypress/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-pinia-vitest/package.json

Copy file name to clipboardExpand all lines: jsx-pinia-vitest/package.json
+8-7Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,18 @@
88
"test:unit": "vitest --environment jsdom"
99
},
1010
"dependencies": {
11-
"pinia": "^2.0.14",
12-
"vue": "^2.7.4"
11+
"pinia": "^2.0.16",
12+
"vue": "^2.7.7"
1313
},
1414
"devDependencies": {
15-
"@vitejs/plugin-legacy": "^1.8.2",
15+
"@vitejs/plugin-legacy": "^2.0.0",
1616
"@vitejs/plugin-vue2": "^1.1.2",
17-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
17+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
1818
"@vue/test-utils": "^1.3.0",
1919
"jsdom": "^20.0.0",
20-
"vite": "^2.9.14",
21-
"vitest": "^0.18.0",
22-
"vue-template-compiler": "^2.7.4"
20+
"terser": "^5.14.2",
21+
"vite": "^3.0.2",
22+
"vitest": "^0.18.1",
23+
"vue-template-compiler": "^2.7.7"
2324
}
2425
}

‎jsx-pinia-vitest/vite.config.js

Copy file name to clipboardExpand all lines: jsx-pinia-vitest/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-pinia-with-tests/package.json

Copy file name to clipboardExpand all lines: jsx-pinia-with-tests/package.json
+10-9Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,24 @@
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
88
"test:unit": "vitest --environment jsdom",
9-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
10-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'"
9+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
10+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'"
1111
},
1212
"dependencies": {
13-
"pinia": "^2.0.14",
14-
"vue": "^2.7.4"
13+
"pinia": "^2.0.16",
14+
"vue": "^2.7.7"
1515
},
1616
"devDependencies": {
17-
"@vitejs/plugin-legacy": "^1.8.2",
17+
"@vitejs/plugin-legacy": "^2.0.0",
1818
"@vitejs/plugin-vue2": "^1.1.2",
19-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
19+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
2020
"@vue/test-utils": "^1.3.0",
2121
"cypress": "^10.3.0",
2222
"jsdom": "^20.0.0",
2323
"start-server-and-test": "^1.14.0",
24-
"vite": "^2.9.14",
25-
"vitest": "^0.18.0",
26-
"vue-template-compiler": "^2.7.4"
24+
"terser": "^5.14.2",
25+
"vite": "^3.0.2",
26+
"vitest": "^0.18.1",
27+
"vue-template-compiler": "^2.7.7"
2728
}
2829
}

‎jsx-pinia-with-tests/vite.config.js

Copy file name to clipboardExpand all lines: jsx-pinia-with-tests/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-pinia/package.json

Copy file name to clipboardExpand all lines: jsx-pinia/package.json
+6-5Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,14 @@
77
"preview": "vite preview --port 4173"
88
},
99
"dependencies": {
10-
"pinia": "^2.0.14",
11-
"vue": "^2.7.4"
10+
"pinia": "^2.0.16",
11+
"vue": "^2.7.7"
1212
},
1313
"devDependencies": {
14-
"@vitejs/plugin-legacy": "^1.8.2",
14+
"@vitejs/plugin-legacy": "^2.0.0",
1515
"@vitejs/plugin-vue2": "^1.1.2",
16-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
17-
"vite": "^2.9.14"
16+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
17+
"terser": "^5.14.2",
18+
"vite": "^3.0.2"
1819
}
1920
}

‎jsx-pinia/vite.config.js

Copy file name to clipboardExpand all lines: jsx-pinia/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-router-cypress/package.json

Copy file name to clipboardExpand all lines: jsx-router-cypress/package.json
+7-6Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,22 @@
55
"dev": "vite",
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
8-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
9-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'",
8+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
9+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
1010
"test:unit": "cypress open --component",
1111
"test:unit:ci": "cypress run --component --quiet --reporter spec"
1212
},
1313
"dependencies": {
14-
"vue": "^2.7.4",
14+
"vue": "^2.7.7",
1515
"vue-router": "^3.5.4"
1616
},
1717
"devDependencies": {
18-
"@vitejs/plugin-legacy": "^1.8.2",
18+
"@vitejs/plugin-legacy": "^2.0.0",
1919
"@vitejs/plugin-vue2": "^1.1.2",
20-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
20+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
2121
"cypress": "^10.3.0",
2222
"start-server-and-test": "^1.14.0",
23-
"vite": "^2.9.14"
23+
"terser": "^5.14.2",
24+
"vite": "^3.0.2"
2425
}
2526
}

‎jsx-router-cypress/vite.config.js

Copy file name to clipboardExpand all lines: jsx-router-cypress/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-router-pinia-cypress/package.json

Copy file name to clipboardExpand all lines: jsx-router-pinia-cypress/package.json
+8-7Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,23 @@
55
"dev": "vite",
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
8-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
9-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'",
8+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
9+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'",
1010
"test:unit": "cypress open --component",
1111
"test:unit:ci": "cypress run --component --quiet --reporter spec"
1212
},
1313
"dependencies": {
14-
"pinia": "^2.0.14",
15-
"vue": "^2.7.4",
14+
"pinia": "^2.0.16",
15+
"vue": "^2.7.7",
1616
"vue-router": "^3.5.4"
1717
},
1818
"devDependencies": {
19-
"@vitejs/plugin-legacy": "^1.8.2",
19+
"@vitejs/plugin-legacy": "^2.0.0",
2020
"@vitejs/plugin-vue2": "^1.1.2",
21-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
21+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
2222
"cypress": "^10.3.0",
2323
"start-server-and-test": "^1.14.0",
24-
"vite": "^2.9.14"
24+
"terser": "^5.14.2",
25+
"vite": "^3.0.2"
2526
}
2627
}

‎jsx-router-pinia-cypress/vite.config.js

Copy file name to clipboardExpand all lines: jsx-router-pinia-cypress/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

‎jsx-router-pinia-vitest-cypress/package.json

Copy file name to clipboardExpand all lines: jsx-router-pinia-vitest-cypress/package.json
+10-9Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,25 @@
66
"build": "vite build",
77
"preview": "vite preview --port 4173",
88
"test:unit": "vitest --environment jsdom",
9-
"test:e2e": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress open --e2e'",
10-
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:4173/ 'cypress run --e2e'"
9+
"test:e2e": "start-server-and-test preview http://localhost:4173/ 'cypress open --e2e'",
10+
"test:e2e:ci": "start-server-and-test preview http://localhost:4173/ 'cypress run --e2e'"
1111
},
1212
"dependencies": {
13-
"pinia": "^2.0.14",
14-
"vue": "^2.7.4",
13+
"pinia": "^2.0.16",
14+
"vue": "^2.7.7",
1515
"vue-router": "^3.5.4"
1616
},
1717
"devDependencies": {
18-
"@vitejs/plugin-legacy": "^1.8.2",
18+
"@vitejs/plugin-legacy": "^2.0.0",
1919
"@vitejs/plugin-vue2": "^1.1.2",
20-
"@vitejs/plugin-vue2-jsx": "^1.0.1",
20+
"@vitejs/plugin-vue2-jsx": "^1.0.2",
2121
"@vue/test-utils": "^1.3.0",
2222
"cypress": "^10.3.0",
2323
"jsdom": "^20.0.0",
2424
"start-server-and-test": "^1.14.0",
25-
"vite": "^2.9.14",
26-
"vitest": "^0.18.0",
27-
"vue-template-compiler": "^2.7.4"
25+
"terser": "^5.14.2",
26+
"vite": "^3.0.2",
27+
"vitest": "^0.18.1",
28+
"vue-template-compiler": "^2.7.7"
2829
}
2930
}

‎jsx-router-pinia-vitest-cypress/vite.config.js

Copy file name to clipboardExpand all lines: jsx-router-pinia-vitest-cypress/vite.config.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { fileURLToPath } from 'url'
1+
import { fileURLToPath, URL } from 'node:url'
22

33
import { defineConfig } from 'vite'
44
import legacy from '@vitejs/plugin-legacy'

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.