Skip to content

Commit 741eae3

Browse files
committed
chore: dependency maintenance
1 parent 0a8854c commit 741eae3

File tree

32 files changed

+120
-120
lines changed

32 files changed

+120
-120
lines changed

default/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1313
## Project Setup
1414

1515
```sh
16-
npm install
16+
pnpm install
1717
```
1818

1919
### Compile and Hot-Reload for Development
2020

2121
```sh
22-
npm run dev
22+
pnpm dev
2323
```
2424

2525
### Compile and Minify for Production
2626

2727
```sh
28-
npm run build
28+
pnpm build
2929
```

default/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@vitejs/plugin-legacy": "^1.7.1",
1515
"@vue/runtime-dom": "^3.2.31",
1616
"unplugin-vue2-script-setup": "^0.9.3",
17-
"vite": "^2.8.3",
17+
"vite": "^2.8.4",
1818
"vite-plugin-vue2": "^1.9.3",
1919
"vue-template-babel-compiler": "1.1.3",
2020
"vue-template-compiler": "^2.6.14"

pinia-with-tests/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1313
## Project Setup
1414

1515
```sh
16-
npm install
16+
pnpm install
1717
```
1818

1919
### Compile and Hot-Reload for Development
2020

2121
```sh
22-
npm run dev
22+
pnpm dev
2323
```
2424

2525
### Compile and Minify for Production
2626

2727
```sh
28-
npm run build
28+
pnpm build
2929
```
3030

3131
### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
3232

3333
```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
3535
```
3636

3737
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
3838

3939
```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
4242
```

pinia-with-tests/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
1212
},
1313
"dependencies": {
1414
"@vue/composition-api": "^1.4.6",
15-
"pinia": "^2.0.4",
15+
"pinia": "^2.0.11",
1616
"vue": "^2.6.14"
1717
},
1818
"devDependencies": {
19-
"@cypress/vite-dev-server": "^2.2.1",
19+
"@cypress/vite-dev-server": "^2.2.2",
2020
"@cypress/vue": "^2.2.4",
2121
"@vitejs/plugin-legacy": "^1.7.1",
2222
"@vue/runtime-dom": "^3.2.31",
23-
"cypress": "^9.1.0",
23+
"cypress": "^9.5.0",
2424
"start-server-and-test": "^1.14.0",
2525
"unplugin-vue2-script-setup": "^0.9.3",
26-
"vite": "^2.8.3",
26+
"vite": "^2.8.4",
2727
"vite-plugin-vue2": "^1.9.3",
2828
"vue-template-babel-compiler": "1.1.3",
2929
"vue-template-compiler": "^2.6.14"

pinia/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1313
## Project Setup
1414

1515
```sh
16-
npm install
16+
pnpm install
1717
```
1818

1919
### Compile and Hot-Reload for Development
2020

2121
```sh
22-
npm run dev
22+
pnpm dev
2323
```
2424

2525
### Compile and Minify for Production
2626

2727
```sh
28-
npm run build
28+
pnpm build
2929
```

pinia/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
},
99
"dependencies": {
1010
"@vue/composition-api": "^1.4.6",
11-
"pinia": "^2.0.4",
11+
"pinia": "^2.0.11",
1212
"vue": "^2.6.14"
1313
},
1414
"devDependencies": {
1515
"@vitejs/plugin-legacy": "^1.7.1",
1616
"@vue/runtime-dom": "^3.2.31",
1717
"unplugin-vue2-script-setup": "^0.9.3",
18-
"vite": "^2.8.3",
18+
"vite": "^2.8.4",
1919
"vite-plugin-vue2": "^1.9.3",
2020
"vue-template-babel-compiler": "1.1.3",
2121
"vue-template-compiler": "^2.6.14"

router-pinia-with-tests/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1313
## Project Setup
1414

1515
```sh
16-
npm install
16+
pnpm install
1717
```
1818

1919
### Compile and Hot-Reload for Development
2020

2121
```sh
22-
npm run dev
22+
pnpm dev
2323
```
2424

2525
### Compile and Minify for Production
2626

2727
```sh
28-
npm run build
28+
pnpm build
2929
```
3030

3131
### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
3232

3333
```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
3535
```
3636

3737
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
3838

3939
```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
4242
```

router-pinia-with-tests/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@
1212
},
1313
"dependencies": {
1414
"@vue/composition-api": "^1.4.6",
15-
"pinia": "^2.0.4",
15+
"pinia": "^2.0.11",
1616
"vue": "^2.6.14",
1717
"vue-router": "^3.5.3"
1818
},
1919
"devDependencies": {
20-
"@cypress/vite-dev-server": "^2.2.1",
20+
"@cypress/vite-dev-server": "^2.2.2",
2121
"@cypress/vue": "^2.2.4",
2222
"@vitejs/plugin-legacy": "^1.7.1",
2323
"@vue/runtime-dom": "^3.2.31",
24-
"cypress": "^9.1.0",
24+
"cypress": "^9.5.0",
2525
"start-server-and-test": "^1.14.0",
2626
"unplugin-vue2-script-setup": "^0.9.3",
27-
"vite": "^2.8.3",
27+
"vite": "^2.8.4",
2828
"vite-plugin-vue2": "^1.9.3",
2929
"vue-template-babel-compiler": "1.1.3",
3030
"vue-template-compiler": "^2.6.14"

router-pinia/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1313
## Project Setup
1414

1515
```sh
16-
npm install
16+
pnpm install
1717
```
1818

1919
### Compile and Hot-Reload for Development
2020

2121
```sh
22-
npm run dev
22+
pnpm dev
2323
```
2424

2525
### Compile and Minify for Production
2626

2727
```sh
28-
npm run build
28+
pnpm build
2929
```

router-pinia/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
},
99
"dependencies": {
1010
"@vue/composition-api": "^1.4.6",
11-
"pinia": "^2.0.4",
11+
"pinia": "^2.0.11",
1212
"vue": "^2.6.14",
1313
"vue-router": "^3.5.3"
1414
},
1515
"devDependencies": {
1616
"@vitejs/plugin-legacy": "^1.7.1",
1717
"@vue/runtime-dom": "^3.2.31",
1818
"unplugin-vue2-script-setup": "^0.9.3",
19-
"vite": "^2.8.3",
19+
"vite": "^2.8.4",
2020
"vite-plugin-vue2": "^1.9.3",
2121
"vue-template-babel-compiler": "1.1.3",
2222
"vue-template-compiler": "^2.6.14"

router-with-tests/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,30 +13,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1313
## Project Setup
1414

1515
```sh
16-
npm install
16+
pnpm install
1717
```
1818

1919
### Compile and Hot-Reload for Development
2020

2121
```sh
22-
npm run dev
22+
pnpm dev
2323
```
2424

2525
### Compile and Minify for Production
2626

2727
```sh
28-
npm run build
28+
pnpm build
2929
```
3030

3131
### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
3232

3333
```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
3535
```
3636

3737
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
3838

3939
```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
4242
```

router-with-tests/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"vue-router": "^3.5.3"
1717
},
1818
"devDependencies": {
19-
"@cypress/vite-dev-server": "^2.2.1",
19+
"@cypress/vite-dev-server": "^2.2.2",
2020
"@cypress/vue": "^2.2.4",
2121
"@vitejs/plugin-legacy": "^1.7.1",
2222
"@vue/runtime-dom": "^3.2.31",
23-
"cypress": "^9.1.0",
23+
"cypress": "^9.5.0",
2424
"start-server-and-test": "^1.14.0",
2525
"unplugin-vue2-script-setup": "^0.9.3",
26-
"vite": "^2.8.3",
26+
"vite": "^2.8.4",
2727
"vite-plugin-vue2": "^1.9.3",
2828
"vue-template-babel-compiler": "1.1.3",
2929
"vue-template-compiler": "^2.6.14"

router/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1313
## Project Setup
1414

1515
```sh
16-
npm install
16+
pnpm install
1717
```
1818

1919
### Compile and Hot-Reload for Development
2020

2121
```sh
22-
npm run dev
22+
pnpm dev
2323
```
2424

2525
### Compile and Minify for Production
2626

2727
```sh
28-
npm run build
28+
pnpm build
2929
```

router/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@vitejs/plugin-legacy": "^1.7.1",
1616
"@vue/runtime-dom": "^3.2.31",
1717
"unplugin-vue2-script-setup": "^0.9.3",
18-
"vite": "^2.8.3",
18+
"vite": "^2.8.4",
1919
"vite-plugin-vue2": "^1.9.3",
2020
"vue-template-babel-compiler": "1.1.3",
2121
"vue-template-compiler": "^2.6.14"

typescript-pinia-with-tests/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,30 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1919
## Project Setup
2020

2121
```sh
22-
npm install
22+
pnpm install
2323
```
2424

2525
### Compile and Hot-Reload for Development
2626

2727
```sh
28-
npm run dev
28+
pnpm dev
2929
```
3030

3131
### Type-Check, Compile and Minify for Production
3232

3333
```sh
34-
npm run build
34+
pnpm build
3535
```
3636

3737
### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
3838

3939
```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
4141
```
4242

4343
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
4444

4545
```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
4848
```

typescript-pinia-with-tests/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313
},
1414
"dependencies": {
1515
"@vue/composition-api": "^1.4.6",
16-
"pinia": "^2.0.4",
16+
"pinia": "^2.0.11",
1717
"vue": "^2.6.14"
1818
},
1919
"devDependencies": {
20-
"@cypress/vite-dev-server": "^2.2.1",
20+
"@cypress/vite-dev-server": "^2.2.2",
2121
"@cypress/vue": "^2.2.4",
22-
"@types/node": "^16.11.10",
22+
"@types/node": "^16.11.25",
2323
"@vitejs/plugin-legacy": "^1.7.1",
2424
"@vue/runtime-dom": "^3.2.31",
25-
"cypress": "^9.1.0",
25+
"cypress": "^9.5.0",
2626
"start-server-and-test": "^1.14.0",
2727
"typescript": "~4.5.5",
2828
"unplugin-vue2-script-setup": "^0.9.3",
29-
"vite": "^2.8.3",
29+
"vite": "^2.8.4",
3030
"vite-plugin-vue2": "^1.9.3",
3131
"vue-template-babel-compiler": "1.1.3",
3232
"vue-template-compiler": "^2.6.14",

typescript-pinia/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ See [Vite Configuration Reference](https://vitejs.dev/config/).
1919
## Project Setup
2020

2121
```sh
22-
npm install
22+
pnpm install
2323
```
2424

2525
### Compile and Hot-Reload for Development
2626

2727
```sh
28-
npm run dev
28+
pnpm dev
2929
```
3030

3131
### Type-Check, Compile and Minify for Production
3232

3333
```sh
34-
npm run build
34+
pnpm build
3535
```

0 commit comments

Comments
 (0)