olly-molly 0.2.21 → 0.2.22
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 +29 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -168,6 +168,35 @@ npm run dev
|
|
|
168
168
|
# Open http://localhost:1234
|
|
169
169
|
```
|
|
170
170
|
|
|
171
|
+
### Releasing a New Version
|
|
172
|
+
|
|
173
|
+
```bash
|
|
174
|
+
scripts/build-prebuilt-macos.sh
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
npm version major|minor|patch
|
|
179
|
+
npm publish
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
```bash
|
|
183
|
+
git push origin main
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
gh release create v0.2.21 \
|
|
188
|
+
dist/prebuilt/olly-molly-darwin-arm64.tar.gz \
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
for windows:
|
|
192
|
+
```bash
|
|
193
|
+
powershell -ExecutionPolicy Bypass -File scripts/build-prebuilt-windows.ps1
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
```bash
|
|
197
|
+
gh release upload v0.2.21 dist/prebuilt/olly-molly-win32-x64.tar.gz --clobber
|
|
198
|
+
```
|
|
199
|
+
|
|
171
200
|
### Project Structure
|
|
172
201
|
|
|
173
202
|
```
|