create-blocklet 0.2.16 → 0.2.17
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 +8 -3
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,16 +17,16 @@ With NPM:
|
|
|
17
17
|
npm init blocklet@latest [blocklet-name]
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
With Yarn:
|
|
20
|
+
With Yarn: (recommend)
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
yarn create blocklet [blocklet-name]
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
With PNPM:
|
|
26
|
+
With PNPM: (recommend)
|
|
27
27
|
|
|
28
28
|
```bash
|
|
29
|
-
|
|
29
|
+
pnpm create blocklet [blocklet-name]
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Currently supported template presets include:
|
|
@@ -34,10 +34,15 @@ Currently supported template presets include:
|
|
|
34
34
|
**dapp**
|
|
35
35
|
|
|
36
36
|
- `react`
|
|
37
|
+
- `vue3 + vite`
|
|
38
|
+
- `vue2 + @vue/cli`
|
|
37
39
|
|
|
38
40
|
**static**
|
|
39
41
|
|
|
40
42
|
- `react`
|
|
43
|
+
- `vue3 + vite`
|
|
44
|
+
- `vue2 + @vue/cli`
|
|
45
|
+
- `blocklet page`
|
|
41
46
|
|
|
42
47
|
## Community Templates
|
|
43
48
|
|
package/index.js
CHANGED