@markusylisiurunen/tau 0.1.2 → 0.1.3
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 +31 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -218,11 +218,36 @@ tool calls are displayed in the UI so you can see exactly what the model is doin
|
|
|
218
218
|
|
|
219
219
|
## creating a release
|
|
220
220
|
|
|
221
|
-
releases are published to npm
|
|
221
|
+
releases are published to npm locally (no CI publish workflow).
|
|
222
222
|
|
|
223
|
-
-
|
|
224
|
-
- run `npm run check` and `npm run build`.
|
|
225
|
-
- commit and push the version bump.
|
|
226
|
-
- create a github release with a tag matching the version (e.g. `v0.2.0`).
|
|
223
|
+
- bump the version (creates a git tag):
|
|
227
224
|
|
|
228
|
-
|
|
225
|
+
```sh
|
|
226
|
+
npm version patch
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
- run checks and build:
|
|
230
|
+
|
|
231
|
+
```sh
|
|
232
|
+
npm run check
|
|
233
|
+
npm run build
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
- push the commit and tag:
|
|
237
|
+
|
|
238
|
+
```sh
|
|
239
|
+
git push --follow-tags
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
- create a github release (optional, for release notes):
|
|
243
|
+
|
|
244
|
+
```sh
|
|
245
|
+
gh release create v$(node -p "require('./package.json').version") --generate-notes
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
- publish to npm:
|
|
249
|
+
|
|
250
|
+
```sh
|
|
251
|
+
npm login
|
|
252
|
+
npm publish --access public
|
|
253
|
+
```
|