create-vue 3.0.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,5 +7,11 @@ An easy way to start a Vue project
7
7
  ## Usage
8
8
 
9
9
  ```sh
10
- npm init vue@next
10
+ npm init vue@3
11
+ ```
12
+
13
+ Or, if you need to support IE11, you can create a Vue 2 project with:
14
+
15
+ ```sh
16
+ npm init vue@2
11
17
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vue",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "An easy way to start a Vue project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "devDependencies": {
7
7
  "@types/node": "^16.11.10",
8
- "typescript": "~4.4.4",
8
+ "typescript": "~4.5.2",
9
9
  "vue-tsc": "^0.29.6"
10
10
  }
11
11
  }