]> git.ipfire.org Git - thirdparty/vuejs/create-vue.git/commitdiff
chore: regenerate all template snapshots with the new readme
authorHaoqun Jiang <haoqunjiang@gmail.com>
Wed, 11 Aug 2021 09:26:15 +0000 (17:26 +0800)
committerHaoqun Jiang <haoqunjiang@gmail.com>
Wed, 11 Aug 2021 09:26:15 +0000 (17:26 +0800)
16 files changed:
playground/default/README.md
playground/jsx-router-vuex-with-tests/README.md
playground/jsx-router-vuex/README.md
playground/jsx-router/README.md
playground/jsx/README.md
playground/router-vuex-with-tests/README.md
playground/router-vuex/README.md
playground/router/README.md
playground/typescript-jsx-router-vuex-with-tests/README.md
playground/typescript-jsx-router-vuex/README.md
playground/typescript-jsx-router/README.md
playground/typescript-jsx/README.md
playground/typescript/README.md
playground/vuex-with-tests/README.md
playground/vuex/README.md
playground/with-tests/README.md

index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..134a494cbd9a5cab4325aea3a494a54742c88151 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# default
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,24 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
 
-## Usage
+### Compile and Minify for Production
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..3a1af2bc94a58b7eccd54639ddc1286a942d095d 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# jsx-router-vuex-with-tests
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,36 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Compile and Minify for Production
+
+```sh
+npm run build
+```
+
+### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
+
+```sh
+npm run test:unit # or `npm run test:unit:ci` for headless testing
+```
 
-## Usage
+### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run test:e2e # or `npm run test:e2e:ci` for headless testing
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..981dd4be79565cf3dca9f32391385c7d78db3eb2 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# jsx-router-vuex
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,24 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
 
-## Usage
+### Compile and Minify for Production
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..c9db8b375166741fca121afc10c357a5946cfdd5 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# jsx-router
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,24 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
 
-## Usage
+### Compile and Minify for Production
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..1c565bea69e8aa6cede5ba44727d8320b0465c38 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# jsx
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,24 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
 
-## Usage
+### Compile and Minify for Production
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..31cca85b89e3338b5e264e7e5535b1519e2f2722 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# router-vuex-with-tests
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,36 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Compile and Minify for Production
+
+```sh
+npm run build
+```
+
+### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
+
+```sh
+npm run test:unit # or `npm run test:unit:ci` for headless testing
+```
 
-## Usage
+### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run test:e2e # or `npm run test:e2e:ci` for headless testing
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..1370c292fc186915183d57b86ccf88dfe784436a 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# router-vuex
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,24 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
 
-## Usage
+### Compile and Minify for Production
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..0c65c96dbe45768857553d66bbb577f37cd7c55e 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# router
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,24 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
 
-## Usage
+### Compile and Minify for Production
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..50634e8ecaf939238e7c383a7a1d0e171297d5e7 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# typescript-jsx-router-vuex-with-tests
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -16,6 +16,32 @@ However, if you wish to get actual prop types in `.vue` imports (for example to
 
 See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-## Usage
+## Project Setup
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm install
+```
+
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Type-Check, Compile and Minify for Production
+
+```sh
+npm run build
+```
+
+### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
+
+```sh
+npm run test:unit # or `npm run test:unit:ci` for headless testing
+```
+
+### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
+
+```sh
+npm run test:e2e # or `npm run test:e2e:ci` for headless testing
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..288a9df2bfa493fc92152516ed30ca3b8b2da7e4 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# typescript-jsx-router-vuex
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -16,6 +16,20 @@ However, if you wish to get actual prop types in `.vue` imports (for example to
 
 See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-## Usage
+## Project Setup
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm install
+```
+
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Type-Check, Compile and Minify for Production
+
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..037a49faf7d1b45e0cc05b9d4bb19660aa779b25 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# typescript-jsx-router
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -16,6 +16,20 @@ However, if you wish to get actual prop types in `.vue` imports (for example to
 
 See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-## Usage
+## Project Setup
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm install
+```
+
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Type-Check, Compile and Minify for Production
+
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..800c86ffe1a3b70b9c8dfde2e155eb890e7b6ae9 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# typescript-jsx
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -16,6 +16,20 @@ However, if you wish to get actual prop types in `.vue` imports (for example to
 
 See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-## Usage
+## Project Setup
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm install
+```
+
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Type-Check, Compile and Minify for Production
+
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..8f766e02044e2c527bc7656f45d914c2de9766cd 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# typescript
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -16,6 +16,20 @@ However, if you wish to get actual prop types in `.vue` imports (for example to
 
 See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-## Usage
+## Project Setup
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm install
+```
+
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Type-Check, Compile and Minify for Production
+
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..6977da3ba88d44d9a3db61966d38ab3d4330eaed 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# vuex-with-tests
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,36 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Compile and Minify for Production
+
+```sh
+npm run build
+```
+
+### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
+
+```sh
+npm run test:unit # or `npm run test:unit:ci` for headless testing
+```
 
-## Usage
+### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run test:e2e # or `npm run test:e2e:ci` for headless testing
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..a087c53e3451dc0883d94baaac72dd25f287193f 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# vuex
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,24 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
 
-## Usage
+### Compile and Minify for Production
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run build
+```
index c3a42c1992db8be23bdd9c1cfca07b9b94832ab0..95bb761e65beba5cfaac2d6e5f3c1f5951fb3a4b 100644 (file)
@@ -1,4 +1,4 @@
-# Vue 3 + Vite
+# with-tests
 
 This template should help get you started developing with Vue 3 in Vite.
 
@@ -6,16 +6,36 @@ This template should help get you started developing with Vue 3 in Vite.
 
 [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar) (and disable Vetur).
 
-## Type Support for `.vue` Imports in TS
+## Customize configuration
 
-Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates.
+See [Vite Configuration Reference](https://vitejs.dev/config/).
 
-However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can run `Volar: Switch TS Plugin on/off` from VSCode command palette.
+## Project Setup
 
-## Customize configuration
+```sh
+npm install
+```
 
-See [Vite Configuration Reference](https://vitejs.dev/config/).
+### Compile and Hot-Reload for Development
+
+```sh
+npm run dev
+```
+
+### Compile and Minify for Production
+
+```sh
+npm run build
+```
+
+### Run Unit Tests with [Cypress Component Testing](https://docs.cypress.io/guides/component-testing/introduction)
+
+```sh
+npm run test:unit # or `npm run test:unit:ci` for headless testing
+```
 
-## Usage
+### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
 
-<!-- NPM-SCRIPTS-PLACEHOLDER -->
+```sh
+npm run test:e2e # or `npm run test:e2e:ci` for headless testing
+```