create-blocklet 0.2.7 → 0.2.8
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/CHANGELOG.md +4 -0
- package/common/.github/workflows/main.yml +3 -3
- package/package.json +1 -1
- package/template-dapp/react/README.md +13 -13
- package/template-dapp/vue/README.md +14 -14
- package/template-dapp/vue2/README.md +14 -14
- package/template-static/react/README.md +14 -14
- package/template-static/vue/README.md +14 -14
- package/template-static/vue2/README.md +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -22,13 +22,13 @@ jobs:
|
|
|
22
22
|
run: yarn
|
|
23
23
|
|
|
24
24
|
- name: Blocklet workflow
|
|
25
|
-
uses: blocklet/action-workflow@v1
|
|
25
|
+
uses: blocklet/action-workflow@v1.1
|
|
26
26
|
with:
|
|
27
27
|
skip-upload: false
|
|
28
28
|
skip-deploy: false
|
|
29
29
|
bundle-command: yarn bundle
|
|
30
|
-
|
|
31
|
-
|
|
30
|
+
store-endpoint: ${{ secrets.STORE_ENDPOINT_STAGING }}
|
|
31
|
+
store-access-token: ${{ secrets.STORE_ACCESS_TOKEN_STAGING }}
|
|
32
32
|
abtnode-endpoint: ${{ secrets.STAGING_NODE_ENDPOINT }}
|
|
33
33
|
access-key: ${{ secrets.STAGING_NODE_ACCESS_KEY }}
|
|
34
34
|
access-secret: ${{ secrets.STAGING_NODE_ACCESS_SECRET }}
|
package/package.json
CHANGED
|
@@ -67,9 +67,9 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
67
67
|
|
|
68
68
|
> Make sure the blocklet is bundled before deployment.
|
|
69
69
|
|
|
70
|
-
## Upload to blocklet
|
|
70
|
+
## Upload to blocklet store
|
|
71
71
|
|
|
72
|
-
- If you want to upload the blocklet to any
|
|
72
|
+
- If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
|
|
73
73
|
|
|
74
74
|
Bump version at first.
|
|
75
75
|
|
|
@@ -77,22 +77,22 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
77
77
|
make bump-version
|
|
78
78
|
```
|
|
79
79
|
|
|
80
|
-
Then config blocklet
|
|
81
|
-
You can use those
|
|
80
|
+
Then config blocklet store url.
|
|
81
|
+
You can use those store url in below.
|
|
82
82
|
|
|
83
|
-
1. [https://
|
|
84
|
-
2. [https://dev.
|
|
85
|
-
3. A blocklet
|
|
86
|
-
> Make sure you have installed a `blocklet
|
|
83
|
+
1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
|
|
84
|
+
2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
|
|
85
|
+
3. A blocklet store started by yourself.
|
|
86
|
+
> Make sure you have installed a `blocklet store` on your own abtnode. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
|
|
87
87
|
|
|
88
88
|
```shell
|
|
89
|
-
blocklet config set
|
|
89
|
+
blocklet config set store {store url}
|
|
90
90
|
```
|
|
91
91
|
|
|
92
92
|
Get a `accessToken` by using this command.
|
|
93
93
|
|
|
94
94
|
> Why we need a `accessToken`?
|
|
95
|
-
> A `accessToken` is genrate by blocklet
|
|
95
|
+
> A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
|
|
96
96
|
|
|
97
97
|
Set `accessToken` to blocklet config
|
|
98
98
|
|
|
@@ -100,7 +100,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
100
100
|
blocklet config set accessToken {accessToken}
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
Upload a new version to a
|
|
103
|
+
Upload a new version to a store.
|
|
104
104
|
|
|
105
105
|
> Make sure the blocklet is bundled before upload.
|
|
106
106
|
|
|
@@ -110,7 +110,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
110
110
|
|
|
111
111
|
Or you can simply use `npm run upload` command.
|
|
112
112
|
|
|
113
|
-
- You also can upload a new version to a
|
|
113
|
+
- You also can upload a new version to a store by Github CI.
|
|
114
114
|
Bump version at first.
|
|
115
115
|
|
|
116
116
|
```shell
|
|
@@ -118,7 +118,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
Push your code to Github main/master branch, or make a pull request to the main/master branch.
|
|
121
|
-
The CI workflow will automatically upload a new version to a
|
|
121
|
+
The CI workflow will automatically upload a new version to a store.
|
|
122
122
|
|
|
123
123
|
## Q & A
|
|
124
124
|
|
|
@@ -61,9 +61,9 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
61
61
|
|
|
62
62
|
> Make sure the blocklet is bundled before deployment.
|
|
63
63
|
|
|
64
|
-
## Upload to blocklet
|
|
64
|
+
## Upload to blocklet store
|
|
65
65
|
|
|
66
|
-
- If you want to upload the blocklet to any
|
|
66
|
+
- If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
|
|
67
67
|
|
|
68
68
|
Bump version at first.
|
|
69
69
|
|
|
@@ -71,22 +71,22 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
71
71
|
make bump-version
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
Then config blocklet
|
|
75
|
-
You can use those
|
|
74
|
+
Then config blocklet store url.
|
|
75
|
+
You can use those store url in below.
|
|
76
76
|
|
|
77
|
-
1. [https://
|
|
78
|
-
2. [https://dev.
|
|
79
|
-
3. A blocklet
|
|
80
|
-
> Make sure you have installed a `blocklet
|
|
77
|
+
1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
|
|
78
|
+
2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
|
|
79
|
+
3. A blocklet store started by yourself.
|
|
80
|
+
> Make sure you have installed a `blocklet store` on your own abtnode. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
|
|
81
81
|
|
|
82
82
|
```shell
|
|
83
|
-
blocklet config set
|
|
83
|
+
blocklet config set store {store url}
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
Get a `accessToken` from blocklet
|
|
86
|
+
Get a `accessToken` from blocklet store.
|
|
87
87
|
|
|
88
88
|
> Why we need a `accessToken`?
|
|
89
|
-
> A `accessToken` is genrate by blocklet
|
|
89
|
+
> A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
|
|
90
90
|
|
|
91
91
|
Set `accessToken` to blocklet config
|
|
92
92
|
|
|
@@ -94,7 +94,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
94
94
|
blocklet config set accessToken {accessToken}
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
Upload a new version to a
|
|
97
|
+
Upload a new version to a store.
|
|
98
98
|
|
|
99
99
|
> Make sure the blocklet is bundled before upload.
|
|
100
100
|
|
|
@@ -104,7 +104,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
104
104
|
|
|
105
105
|
Or you can simply use `npm run upload` command.
|
|
106
106
|
|
|
107
|
-
- You also can upload a new version to blocklet
|
|
107
|
+
- You also can upload a new version to blocklet store by Github CI.
|
|
108
108
|
Bump version at first.
|
|
109
109
|
|
|
110
110
|
```shell
|
|
@@ -112,7 +112,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
Push your code to Github main/master branch, or make a pull request to the main/master branch.
|
|
115
|
-
The CI workflow will automatically upload a new version to a
|
|
115
|
+
The CI workflow will automatically upload a new version to a store.
|
|
116
116
|
|
|
117
117
|
## Q & A
|
|
118
118
|
|
|
@@ -61,9 +61,9 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
61
61
|
|
|
62
62
|
> Make sure the blocklet is bundled before deployment.
|
|
63
63
|
|
|
64
|
-
## Upload to blocklet
|
|
64
|
+
## Upload to blocklet store
|
|
65
65
|
|
|
66
|
-
- If you want to upload the blocklet to any
|
|
66
|
+
- If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
|
|
67
67
|
|
|
68
68
|
Bump version at first.
|
|
69
69
|
|
|
@@ -71,22 +71,22 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
71
71
|
make bump-version
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
Then config blocklet
|
|
75
|
-
You can use those
|
|
74
|
+
Then config blocklet store url.
|
|
75
|
+
You can use those store url in below.
|
|
76
76
|
|
|
77
|
-
1. [https://
|
|
78
|
-
2. [https://dev.
|
|
79
|
-
3. A blocklet
|
|
80
|
-
> Make sure you have installed a `blocklet
|
|
77
|
+
1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
|
|
78
|
+
2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
|
|
79
|
+
3. A blocklet store started by yourself.
|
|
80
|
+
> Make sure you have installed a `blocklet store` on your own abtnode. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
|
|
81
81
|
|
|
82
82
|
```shell
|
|
83
|
-
blocklet config set
|
|
83
|
+
blocklet config set store {store url}
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
Get a `accessToken` from blocklet
|
|
86
|
+
Get a `accessToken` from blocklet store.
|
|
87
87
|
|
|
88
88
|
> Why we need a `accessToken`?
|
|
89
|
-
> A `accessToken` is genrate by blocklet
|
|
89
|
+
> A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
|
|
90
90
|
|
|
91
91
|
Set `accessToken` to blocklet config
|
|
92
92
|
|
|
@@ -94,7 +94,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
94
94
|
blocklet config set accessToken {accessToken}
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
Upload a new version to a
|
|
97
|
+
Upload a new version to a store.
|
|
98
98
|
|
|
99
99
|
> Make sure the blocklet is bundled before upload.
|
|
100
100
|
|
|
@@ -104,7 +104,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
104
104
|
|
|
105
105
|
Or you can simply use `npm run upload` command.
|
|
106
106
|
|
|
107
|
-
- You also can upload a new version to blocklet
|
|
107
|
+
- You also can upload a new version to blocklet store by Github CI.
|
|
108
108
|
Bump version at first.
|
|
109
109
|
|
|
110
110
|
```shell
|
|
@@ -112,7 +112,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
Push your code to Github main/master branch, or make a pull request to the main/master branch.
|
|
115
|
-
The CI workflow will automatically upload a new version to a
|
|
115
|
+
The CI workflow will automatically upload a new version to a store.
|
|
116
116
|
|
|
117
117
|
## Q & A
|
|
118
118
|
|
|
@@ -61,9 +61,9 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
61
61
|
|
|
62
62
|
> Make sure the blocklet is bundled before deployment.
|
|
63
63
|
|
|
64
|
-
## Upload to blocklet
|
|
64
|
+
## Upload to blocklet store
|
|
65
65
|
|
|
66
|
-
- If you want to upload the blocklet to any
|
|
66
|
+
- If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
|
|
67
67
|
|
|
68
68
|
Bump version at first.
|
|
69
69
|
|
|
@@ -71,22 +71,22 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
71
71
|
make bump-version
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
Then config blocklet
|
|
75
|
-
You can use those
|
|
74
|
+
Then config blocklet store url.
|
|
75
|
+
You can use those store url in below.
|
|
76
76
|
|
|
77
|
-
1. [https://
|
|
78
|
-
2. [https://dev.
|
|
79
|
-
3. A blocklet
|
|
80
|
-
> Make sure you have installed a `blocklet
|
|
77
|
+
1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
|
|
78
|
+
2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
|
|
79
|
+
3. A blocklet store started by yourself.
|
|
80
|
+
> Make sure you have installed a `blocklet store` on your own abtnode. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
|
|
81
81
|
|
|
82
82
|
```shell
|
|
83
|
-
blocklet config set
|
|
83
|
+
blocklet config set store {store url}
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
Get a `accessToken` from blocklet
|
|
86
|
+
Get a `accessToken` from blocklet store.
|
|
87
87
|
|
|
88
88
|
> Why we need a `accessToken`?
|
|
89
|
-
> A `accessToken` is genrate by blocklet
|
|
89
|
+
> A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
|
|
90
90
|
|
|
91
91
|
Set `accessToken` to blocklet config
|
|
92
92
|
|
|
@@ -94,7 +94,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
94
94
|
blocklet config set accessToken {accessToken}
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
Upload a new version to a
|
|
97
|
+
Upload a new version to a store.
|
|
98
98
|
|
|
99
99
|
> Make sure the blocklet is bundled before upload.
|
|
100
100
|
|
|
@@ -104,7 +104,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
104
104
|
|
|
105
105
|
Or you can simply use `npm run upload` command.
|
|
106
106
|
|
|
107
|
-
- You also can upload a new version to blocklet
|
|
107
|
+
- You also can upload a new version to blocklet store by Github CI.
|
|
108
108
|
Bump version at first.
|
|
109
109
|
|
|
110
110
|
```shell
|
|
@@ -112,7 +112,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
Push your code to Github main/master branch, or make a pull request to the main/master branch.
|
|
115
|
-
The CI workflow will automatically upload a new version to a
|
|
115
|
+
The CI workflow will automatically upload a new version to a store.
|
|
116
116
|
|
|
117
117
|
## Q & A
|
|
118
118
|
|
|
@@ -61,9 +61,9 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
61
61
|
|
|
62
62
|
> Make sure the blocklet is bundled before deployment.
|
|
63
63
|
|
|
64
|
-
## Upload to blocklet
|
|
64
|
+
## Upload to blocklet store
|
|
65
65
|
|
|
66
|
-
- If you want to upload the blocklet to any
|
|
66
|
+
- If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
|
|
67
67
|
|
|
68
68
|
Bump version at first.
|
|
69
69
|
|
|
@@ -71,22 +71,22 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
71
71
|
make bump-version
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
Then config blocklet
|
|
75
|
-
You can use those
|
|
74
|
+
Then config blocklet store url.
|
|
75
|
+
You can use those store url in below.
|
|
76
76
|
|
|
77
|
-
1. [https://
|
|
78
|
-
2. [https://dev.
|
|
79
|
-
3. A blocklet
|
|
80
|
-
> Make sure you have installed a `blocklet
|
|
77
|
+
1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
|
|
78
|
+
2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
|
|
79
|
+
3. A blocklet store started by yourself.
|
|
80
|
+
> Make sure you have installed a `blocklet store` on your own abtnode. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
|
|
81
81
|
|
|
82
82
|
```shell
|
|
83
|
-
blocklet config set
|
|
83
|
+
blocklet config set store {store url}
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
Get a `accessToken` from blocklet
|
|
86
|
+
Get a `accessToken` from blocklet store.
|
|
87
87
|
|
|
88
88
|
> Why we need a `accessToken`?
|
|
89
|
-
> A `accessToken` is genrate by blocklet
|
|
89
|
+
> A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
|
|
90
90
|
|
|
91
91
|
Set `accessToken` to blocklet config
|
|
92
92
|
|
|
@@ -94,7 +94,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
94
94
|
blocklet config set accessToken {accessToken}
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
Upload a new version to a
|
|
97
|
+
Upload a new version to a store.
|
|
98
98
|
|
|
99
99
|
> Make sure the blocklet is bundled before upload.
|
|
100
100
|
|
|
@@ -104,7 +104,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
104
104
|
|
|
105
105
|
Or you can simply use `npm run upload` command.
|
|
106
106
|
|
|
107
|
-
- You also can upload a new version to blocklet
|
|
107
|
+
- You also can upload a new version to blocklet store by Github CI.
|
|
108
108
|
Bump version at first.
|
|
109
109
|
|
|
110
110
|
```shell
|
|
@@ -112,7 +112,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
Push your code to Github main/master branch, or make a pull request to the main/master branch.
|
|
115
|
-
The CI workflow will automatically upload a new version to a
|
|
115
|
+
The CI workflow will automatically upload a new version to a store.
|
|
116
116
|
|
|
117
117
|
## Q & A
|
|
118
118
|
|
|
@@ -61,9 +61,9 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
61
61
|
|
|
62
62
|
> Make sure the blocklet is bundled before deployment.
|
|
63
63
|
|
|
64
|
-
## Upload to blocklet
|
|
64
|
+
## Upload to blocklet store
|
|
65
65
|
|
|
66
|
-
- If you want to upload the blocklet to any
|
|
66
|
+
- If you want to upload the blocklet to any store for other users to download and use, you can following the following instructions.
|
|
67
67
|
|
|
68
68
|
Bump version at first.
|
|
69
69
|
|
|
@@ -71,22 +71,22 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
71
71
|
make bump-version
|
|
72
72
|
```
|
|
73
73
|
|
|
74
|
-
Then config blocklet
|
|
75
|
-
You can use those
|
|
74
|
+
Then config blocklet store url.
|
|
75
|
+
You can use those store url in below.
|
|
76
76
|
|
|
77
|
-
1. [https://
|
|
78
|
-
2. [https://dev.
|
|
79
|
-
3. A blocklet
|
|
80
|
-
> Make sure you have installed a `blocklet
|
|
77
|
+
1. [https://store.blocklet.dev/](https://store.blocklet.dev/)
|
|
78
|
+
2. [https://dev.store.blocklet.dev/](https://dev.store.blocklet.dev/)
|
|
79
|
+
3. A blocklet store started by yourself.
|
|
80
|
+
> Make sure you have installed a `blocklet store` on your own abtnode. Check it on here: [https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ](https://store.blocklet.dev/blocklet/z8ia29UsENBg6tLZUKi2HABj38Cw1LmHZocbQ)
|
|
81
81
|
|
|
82
82
|
```shell
|
|
83
|
-
blocklet config set
|
|
83
|
+
blocklet config set store {store url}
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
Get a `accessToken` from blocklet
|
|
86
|
+
Get a `accessToken` from blocklet store.
|
|
87
87
|
|
|
88
88
|
> Why we need a `accessToken`?
|
|
89
|
-
> A `accessToken` is genrate by blocklet
|
|
89
|
+
> A `accessToken` is genrate by blocklet store, which help us upload our blocklet to any store.
|
|
90
90
|
|
|
91
91
|
Set `accessToken` to blocklet config
|
|
92
92
|
|
|
@@ -94,7 +94,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
94
94
|
blocklet config set accessToken {accessToken}
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
Upload a new version to a
|
|
97
|
+
Upload a new version to a store.
|
|
98
98
|
|
|
99
99
|
> Make sure the blocklet is bundled before upload.
|
|
100
100
|
|
|
@@ -104,7 +104,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
104
104
|
|
|
105
105
|
Or you can simply use `npm run upload` command.
|
|
106
106
|
|
|
107
|
-
- You also can upload a new version to blocklet
|
|
107
|
+
- You also can upload a new version to blocklet store by Github CI.
|
|
108
108
|
Bump version at first.
|
|
109
109
|
|
|
110
110
|
```shell
|
|
@@ -112,7 +112,7 @@ After developing a blocklet, you may need to bundle it. Use `npm run bundle` com
|
|
|
112
112
|
```
|
|
113
113
|
|
|
114
114
|
Push your code to Github main/master branch, or make a pull request to the main/master branch.
|
|
115
|
-
The CI workflow will automatically upload a new version to a
|
|
115
|
+
The CI workflow will automatically upload a new version to a store.
|
|
116
116
|
|
|
117
117
|
## Q & A
|
|
118
118
|
|