@markusylisiurunen/tau 0.1.7 → 0.1.9

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 CHANGED
@@ -245,7 +245,9 @@ tool calls are displayed in the UI so you can see exactly what the model is doin
245
245
 
246
246
  ## creating a release
247
247
 
248
- releases are published to npm locally (no CI publish workflow).
248
+ publishing to npm happens automatically via github actions when a github release is published.
249
+
250
+ release steps:
249
251
 
250
252
  - run checks and build:
251
253
 
@@ -266,15 +268,8 @@ npm version patch
266
268
  git push --follow-tags
267
269
  ```
268
270
 
269
- - create a github release:
271
+ - create a github release (this triggers the publish workflow):
270
272
 
271
273
  ```sh
272
274
  gh release create v$(node -p "require('./package.json').version") --generate-notes
273
275
  ```
274
-
275
- - publish to npm:
276
-
277
- ```sh
278
- npm login
279
- npm publish --access public
280
- ```
package/dist/main.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markusylisiurunen/tau",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "tau": "./dist/main.js"
@@ -21,12 +21,12 @@
21
21
  "access": "public"
22
22
  },
23
23
  "dependencies": {
24
- "@mariozechner/pi-ai": "^0.21.0",
25
- "@mariozechner/pi-tui": "^0.21.0",
24
+ "@mariozechner/pi-ai": "^0.22.2",
25
+ "@mariozechner/pi-tui": "^0.22.2",
26
26
  "chalk": "^5.6.2"
27
27
  },
28
28
  "devDependencies": {
29
- "@biomejs/biome": "2.3.8",
29
+ "@biomejs/biome": "2.3.9",
30
30
  "@types/node": "^24.10.4",
31
31
  "tsx": "^4.21.0",
32
32
  "typescript": "^5.9.3"