adograb 0.1.1 → 0.1.2
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 +16 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -166,10 +166,24 @@ You can watch it run under the **Actions** tab in your GitHub repo.
|
|
|
166
166
|
|
|
167
167
|
---
|
|
168
168
|
|
|
169
|
-
###
|
|
169
|
+
### Publish from local machine
|
|
170
170
|
|
|
171
|
-
If you want to publish directly from your machine:
|
|
171
|
+
If you want to publish directly from your machine without GitHub Actions:
|
|
172
172
|
|
|
173
|
+
**Step 1 — Commit your changes**
|
|
174
|
+
```bash
|
|
175
|
+
git add .
|
|
176
|
+
git commit -m "your change description"
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
**Step 2 — Bump the version** (this updates `package.json` automatically)
|
|
180
|
+
```bash
|
|
181
|
+
npm version patch # bug fix 0.1.0 → 0.1.1
|
|
182
|
+
npm version minor # new feature 0.1.0 → 0.2.0
|
|
183
|
+
npm version major # breaking change 0.1.0 → 1.0.0
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
**Step 3 — Build and publish**
|
|
173
187
|
```bash
|
|
174
188
|
npm run build
|
|
175
189
|
npm publish
|