File tree Expand file tree Collapse file tree 32 files changed +120
-120
lines changed
typescript-pinia-with-tests
typescript-router-pinia-with-tests
typescript-router-with-tests Expand file tree Collapse file tree 32 files changed +120
-120
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
13
13
## Project Setup
14
14
15
15
``` sh
16
- npm install
16
+ pnpm install
17
17
```
18
18
19
19
### Compile and Hot-Reload for Development
20
20
21
21
``` sh
22
- npm run dev
22
+ pnpm dev
23
23
```
24
24
25
25
### Compile and Minify for Production
26
26
27
27
``` sh
28
- npm run build
28
+ pnpm build
29
29
```
Original file line number Diff line number Diff line change 14
14
"@vitejs/plugin-legacy" : " ^1.7.1" ,
15
15
"@vue/runtime-dom" : " ^3.2.31" ,
16
16
"unplugin-vue2-script-setup" : " ^0.9.3" ,
17
- "vite" : " ^2.8.3 " ,
17
+ "vite" : " ^2.8.4 " ,
18
18
"vite-plugin-vue2" : " ^1.9.3" ,
19
19
"vue-template-babel-compiler" : " 1.1.3" ,
20
20
"vue-template-compiler" : " ^2.6.14"
Original file line number Diff line number Diff line change @@ -13,30 +13,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
13
13
## Project Setup
14
14
15
15
``` sh
16
- npm install
16
+ pnpm install
17
17
```
18
18
19
19
### Compile and Hot-Reload for Development
20
20
21
21
``` sh
22
- npm run dev
22
+ pnpm dev
23
23
```
24
24
25
25
### Compile and Minify for Production
26
26
27
27
``` sh
28
- npm run build
28
+ pnpm build
29
29
```
30
30
31
31
### Run Unit Tests with [ Cypress Component Testing] ( https://docs.cypress.io/guides/component-testing/introduction )
32
32
33
33
``` sh
34
- npm run test:unit # or `npm run test:unit:ci` for headless testing
34
+ pnpm test:unit # or `pnpm test:unit:ci` for headless testing
35
35
```
36
36
37
37
### Run End-to-End Tests with [ Cypress] ( https://www.cypress.io/ )
38
38
39
39
``` sh
40
- npm run build
41
- npm run test:e2e # or `npm run test:e2e:ci` for headless testing
40
+ pnpm build
41
+ pnpm test:e2e # or `pnpm test:e2e:ci` for headless testing
42
42
```
Original file line number Diff line number Diff line change 12
12
},
13
13
"dependencies" : {
14
14
"@vue/composition-api" : " ^1.4.6" ,
15
- "pinia" : " ^2.0.4 " ,
15
+ "pinia" : " ^2.0.11 " ,
16
16
"vue" : " ^2.6.14"
17
17
},
18
18
"devDependencies" : {
19
- "@cypress/vite-dev-server" : " ^2.2.1 " ,
19
+ "@cypress/vite-dev-server" : " ^2.2.2 " ,
20
20
"@cypress/vue" : " ^2.2.4" ,
21
21
"@vitejs/plugin-legacy" : " ^1.7.1" ,
22
22
"@vue/runtime-dom" : " ^3.2.31" ,
23
- "cypress" : " ^9.1 .0" ,
23
+ "cypress" : " ^9.5 .0" ,
24
24
"start-server-and-test" : " ^1.14.0" ,
25
25
"unplugin-vue2-script-setup" : " ^0.9.3" ,
26
- "vite" : " ^2.8.3 " ,
26
+ "vite" : " ^2.8.4 " ,
27
27
"vite-plugin-vue2" : " ^1.9.3" ,
28
28
"vue-template-babel-compiler" : " 1.1.3" ,
29
29
"vue-template-compiler" : " ^2.6.14"
Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
13
13
## Project Setup
14
14
15
15
``` sh
16
- npm install
16
+ pnpm install
17
17
```
18
18
19
19
### Compile and Hot-Reload for Development
20
20
21
21
``` sh
22
- npm run dev
22
+ pnpm dev
23
23
```
24
24
25
25
### Compile and Minify for Production
26
26
27
27
``` sh
28
- npm run build
28
+ pnpm build
29
29
```
Original file line number Diff line number Diff line change 8
8
},
9
9
"dependencies" : {
10
10
"@vue/composition-api" : " ^1.4.6" ,
11
- "pinia" : " ^2.0.4 " ,
11
+ "pinia" : " ^2.0.11 " ,
12
12
"vue" : " ^2.6.14"
13
13
},
14
14
"devDependencies" : {
15
15
"@vitejs/plugin-legacy" : " ^1.7.1" ,
16
16
"@vue/runtime-dom" : " ^3.2.31" ,
17
17
"unplugin-vue2-script-setup" : " ^0.9.3" ,
18
- "vite" : " ^2.8.3 " ,
18
+ "vite" : " ^2.8.4 " ,
19
19
"vite-plugin-vue2" : " ^1.9.3" ,
20
20
"vue-template-babel-compiler" : " 1.1.3" ,
21
21
"vue-template-compiler" : " ^2.6.14"
Original file line number Diff line number Diff line change @@ -13,30 +13,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
13
13
## Project Setup
14
14
15
15
``` sh
16
- npm install
16
+ pnpm install
17
17
```
18
18
19
19
### Compile and Hot-Reload for Development
20
20
21
21
``` sh
22
- npm run dev
22
+ pnpm dev
23
23
```
24
24
25
25
### Compile and Minify for Production
26
26
27
27
``` sh
28
- npm run build
28
+ pnpm build
29
29
```
30
30
31
31
### Run Unit Tests with [ Cypress Component Testing] ( https://docs.cypress.io/guides/component-testing/introduction )
32
32
33
33
``` sh
34
- npm run test:unit # or `npm run test:unit:ci` for headless testing
34
+ pnpm test:unit # or `pnpm test:unit:ci` for headless testing
35
35
```
36
36
37
37
### Run End-to-End Tests with [ Cypress] ( https://www.cypress.io/ )
38
38
39
39
``` sh
40
- npm run build
41
- npm run test:e2e # or `npm run test:e2e:ci` for headless testing
40
+ pnpm build
41
+ pnpm test:e2e # or `pnpm test:e2e:ci` for headless testing
42
42
```
Original file line number Diff line number Diff line change 12
12
},
13
13
"dependencies" : {
14
14
"@vue/composition-api" : " ^1.4.6" ,
15
- "pinia" : " ^2.0.4 " ,
15
+ "pinia" : " ^2.0.11 " ,
16
16
"vue" : " ^2.6.14" ,
17
17
"vue-router" : " ^3.5.3"
18
18
},
19
19
"devDependencies" : {
20
- "@cypress/vite-dev-server" : " ^2.2.1 " ,
20
+ "@cypress/vite-dev-server" : " ^2.2.2 " ,
21
21
"@cypress/vue" : " ^2.2.4" ,
22
22
"@vitejs/plugin-legacy" : " ^1.7.1" ,
23
23
"@vue/runtime-dom" : " ^3.2.31" ,
24
- "cypress" : " ^9.1 .0" ,
24
+ "cypress" : " ^9.5 .0" ,
25
25
"start-server-and-test" : " ^1.14.0" ,
26
26
"unplugin-vue2-script-setup" : " ^0.9.3" ,
27
- "vite" : " ^2.8.3 " ,
27
+ "vite" : " ^2.8.4 " ,
28
28
"vite-plugin-vue2" : " ^1.9.3" ,
29
29
"vue-template-babel-compiler" : " 1.1.3" ,
30
30
"vue-template-compiler" : " ^2.6.14"
Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
13
13
## Project Setup
14
14
15
15
``` sh
16
- npm install
16
+ pnpm install
17
17
```
18
18
19
19
### Compile and Hot-Reload for Development
20
20
21
21
``` sh
22
- npm run dev
22
+ pnpm dev
23
23
```
24
24
25
25
### Compile and Minify for Production
26
26
27
27
``` sh
28
- npm run build
28
+ pnpm build
29
29
```
Original file line number Diff line number Diff line change 8
8
},
9
9
"dependencies" : {
10
10
"@vue/composition-api" : " ^1.4.6" ,
11
- "pinia" : " ^2.0.4 " ,
11
+ "pinia" : " ^2.0.11 " ,
12
12
"vue" : " ^2.6.14" ,
13
13
"vue-router" : " ^3.5.3"
14
14
},
15
15
"devDependencies" : {
16
16
"@vitejs/plugin-legacy" : " ^1.7.1" ,
17
17
"@vue/runtime-dom" : " ^3.2.31" ,
18
18
"unplugin-vue2-script-setup" : " ^0.9.3" ,
19
- "vite" : " ^2.8.3 " ,
19
+ "vite" : " ^2.8.4 " ,
20
20
"vite-plugin-vue2" : " ^1.9.3" ,
21
21
"vue-template-babel-compiler" : " 1.1.3" ,
22
22
"vue-template-compiler" : " ^2.6.14"
Original file line number Diff line number Diff line change @@ -13,30 +13,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
13
13
## Project Setup
14
14
15
15
``` sh
16
- npm install
16
+ pnpm install
17
17
```
18
18
19
19
### Compile and Hot-Reload for Development
20
20
21
21
``` sh
22
- npm run dev
22
+ pnpm dev
23
23
```
24
24
25
25
### Compile and Minify for Production
26
26
27
27
``` sh
28
- npm run build
28
+ pnpm build
29
29
```
30
30
31
31
### Run Unit Tests with [ Cypress Component Testing] ( https://docs.cypress.io/guides/component-testing/introduction )
32
32
33
33
``` sh
34
- npm run test:unit # or `npm run test:unit:ci` for headless testing
34
+ pnpm test:unit # or `pnpm test:unit:ci` for headless testing
35
35
```
36
36
37
37
### Run End-to-End Tests with [ Cypress] ( https://www.cypress.io/ )
38
38
39
39
``` sh
40
- npm run build
41
- npm run test:e2e # or `npm run test:e2e:ci` for headless testing
40
+ pnpm build
41
+ pnpm test:e2e # or `pnpm test:e2e:ci` for headless testing
42
42
```
Original file line number Diff line number Diff line change 16
16
"vue-router" : " ^3.5.3"
17
17
},
18
18
"devDependencies" : {
19
- "@cypress/vite-dev-server" : " ^2.2.1 " ,
19
+ "@cypress/vite-dev-server" : " ^2.2.2 " ,
20
20
"@cypress/vue" : " ^2.2.4" ,
21
21
"@vitejs/plugin-legacy" : " ^1.7.1" ,
22
22
"@vue/runtime-dom" : " ^3.2.31" ,
23
- "cypress" : " ^9.1 .0" ,
23
+ "cypress" : " ^9.5 .0" ,
24
24
"start-server-and-test" : " ^1.14.0" ,
25
25
"unplugin-vue2-script-setup" : " ^0.9.3" ,
26
- "vite" : " ^2.8.3 " ,
26
+ "vite" : " ^2.8.4 " ,
27
27
"vite-plugin-vue2" : " ^1.9.3" ,
28
28
"vue-template-babel-compiler" : " 1.1.3" ,
29
29
"vue-template-compiler" : " ^2.6.14"
Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
13
13
## Project Setup
14
14
15
15
``` sh
16
- npm install
16
+ pnpm install
17
17
```
18
18
19
19
### Compile and Hot-Reload for Development
20
20
21
21
``` sh
22
- npm run dev
22
+ pnpm dev
23
23
```
24
24
25
25
### Compile and Minify for Production
26
26
27
27
``` sh
28
- npm run build
28
+ pnpm build
29
29
```
Original file line number Diff line number Diff line change 15
15
"@vitejs/plugin-legacy" : " ^1.7.1" ,
16
16
"@vue/runtime-dom" : " ^3.2.31" ,
17
17
"unplugin-vue2-script-setup" : " ^0.9.3" ,
18
- "vite" : " ^2.8.3 " ,
18
+ "vite" : " ^2.8.4 " ,
19
19
"vite-plugin-vue2" : " ^1.9.3" ,
20
20
"vue-template-babel-compiler" : " 1.1.3" ,
21
21
"vue-template-compiler" : " ^2.6.14"
Original file line number Diff line number Diff line change @@ -19,30 +19,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
19
19
## Project Setup
20
20
21
21
``` sh
22
- npm install
22
+ pnpm install
23
23
```
24
24
25
25
### Compile and Hot-Reload for Development
26
26
27
27
``` sh
28
- npm run dev
28
+ pnpm dev
29
29
```
30
30
31
31
### Type-Check, Compile and Minify for Production
32
32
33
33
``` sh
34
- npm run build
34
+ pnpm build
35
35
```
36
36
37
37
### Run Unit Tests with [ Cypress Component Testing] ( https://docs.cypress.io/guides/component-testing/introduction )
38
38
39
39
``` sh
40
- npm run test:unit # or `npm run test:unit:ci` for headless testing
40
+ pnpm test:unit # or `pnpm test:unit:ci` for headless testing
41
41
```
42
42
43
43
### Run End-to-End Tests with [ Cypress] ( https://www.cypress.io/ )
44
44
45
45
``` sh
46
- npm run build
47
- npm run test:e2e # or `npm run test:e2e:ci` for headless testing
46
+ pnpm build
47
+ pnpm test:e2e # or `pnpm test:e2e:ci` for headless testing
48
48
```
Original file line number Diff line number Diff line change 13
13
},
14
14
"dependencies" : {
15
15
"@vue/composition-api" : " ^1.4.6" ,
16
- "pinia" : " ^2.0.4 " ,
16
+ "pinia" : " ^2.0.11 " ,
17
17
"vue" : " ^2.6.14"
18
18
},
19
19
"devDependencies" : {
20
- "@cypress/vite-dev-server" : " ^2.2.1 " ,
20
+ "@cypress/vite-dev-server" : " ^2.2.2 " ,
21
21
"@cypress/vue" : " ^2.2.4" ,
22
- "@types/node" : " ^16.11.10 " ,
22
+ "@types/node" : " ^16.11.25 " ,
23
23
"@vitejs/plugin-legacy" : " ^1.7.1" ,
24
24
"@vue/runtime-dom" : " ^3.2.31" ,
25
- "cypress" : " ^9.1 .0" ,
25
+ "cypress" : " ^9.5 .0" ,
26
26
"start-server-and-test" : " ^1.14.0" ,
27
27
"typescript" : " ~4.5.5" ,
28
28
"unplugin-vue2-script-setup" : " ^0.9.3" ,
29
- "vite" : " ^2.8.3 " ,
29
+ "vite" : " ^2.8.4 " ,
30
30
"vite-plugin-vue2" : " ^1.9.3" ,
31
31
"vue-template-babel-compiler" : " 1.1.3" ,
32
32
"vue-template-compiler" : " ^2.6.14" ,
Original file line number Diff line number Diff line change @@ -19,17 +19,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
19
19
## Project Setup
20
20
21
21
``` sh
22
- npm install
22
+ pnpm install
23
23
```
24
24
25
25
### Compile and Hot-Reload for Development
26
26
27
27
``` sh
28
- npm run dev
28
+ pnpm dev
29
29
```
30
30
31
31
### Type-Check, Compile and Minify for Production
32
32
33
33
``` sh
34
- npm run build
34
+ pnpm build
35
35
```
You can’t perform that action at this time.
0 commit comments