@doist/todoist-cli 1.29.3 → 1.29.5
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 +12 -0
- package/package.json +10 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.29.5](https://github.com/Doist/todoist-cli/compare/v1.29.4...v1.29.5) (2026-03-29)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* add prepublishOnly script for release safety ([#191](https://github.com/Doist/todoist-cli/issues/191)) ([7c8533c](https://github.com/Doist/todoist-cli/commit/7c8533c1b49e4b2dd2a8fe2e8bbfad3517dea3ed))
|
|
6
|
+
|
|
7
|
+
## [1.29.4](https://github.com/Doist/todoist-cli/compare/v1.29.3...v1.29.4) (2026-03-29)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* use Node 22 for release workflow ([#190](https://github.com/Doist/todoist-cli/issues/190)) ([00e4c00](https://github.com/Doist/todoist-cli/commit/00e4c0097c4e48758fd9a45019e453acd3b4b47d))
|
|
12
|
+
|
|
1
13
|
# Changelog
|
|
2
14
|
|
|
3
15
|
All notable changes to this project will be documented in this file.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@doist/todoist-cli",
|
|
3
|
-
"version": "1.29.
|
|
3
|
+
"version": "1.29.5",
|
|
4
4
|
"description": "TypeScript CLI for Todoist",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"check:skill-sync": "node scripts/check-skill-sync.js",
|
|
21
21
|
"sync:skill": "node scripts/sync-skill.js",
|
|
22
22
|
"test": "vitest run",
|
|
23
|
-
"test:watch": "vitest"
|
|
23
|
+
"test:watch": "vitest",
|
|
24
|
+
"prepublishOnly": "npm run build && npm test"
|
|
24
25
|
},
|
|
25
26
|
"keywords": [
|
|
26
27
|
"todoist",
|
|
@@ -40,7 +41,8 @@
|
|
|
40
41
|
},
|
|
41
42
|
"preferGlobal": true,
|
|
42
43
|
"publishConfig": {
|
|
43
|
-
"access": "public"
|
|
44
|
+
"access": "public",
|
|
45
|
+
"provenance": true
|
|
44
46
|
},
|
|
45
47
|
"engines": {
|
|
46
48
|
"node": ">=20.18.1"
|
|
@@ -51,7 +53,7 @@
|
|
|
51
53
|
"CHANGELOG.md"
|
|
52
54
|
],
|
|
53
55
|
"dependencies": {
|
|
54
|
-
"@doist/todoist-api-typescript": "7.
|
|
56
|
+
"@doist/todoist-api-typescript": "7.7.0",
|
|
55
57
|
"@napi-rs/keyring": "1.2.0",
|
|
56
58
|
"@pnpm/tabtab": "0.5.4",
|
|
57
59
|
"chalk": "5.6.2",
|
|
@@ -63,11 +65,15 @@
|
|
|
63
65
|
"yocto-spinner": "1.1.0"
|
|
64
66
|
},
|
|
65
67
|
"devDependencies": {
|
|
68
|
+
"@semantic-release/changelog": "6.0.3",
|
|
69
|
+
"@semantic-release/git": "10.0.1",
|
|
66
70
|
"@types/marked-terminal": "6.1.1",
|
|
67
71
|
"@types/node": "25.5.0",
|
|
72
|
+
"conventional-changelog-conventionalcommits": "9.3.0",
|
|
68
73
|
"lefthook": "2.1.4",
|
|
69
74
|
"oxfmt": "0.41.0",
|
|
70
75
|
"oxlint": "1.56.0",
|
|
76
|
+
"semantic-release": "25.0.3",
|
|
71
77
|
"typescript": "6.0.2",
|
|
72
78
|
"vitest": "4.1.0"
|
|
73
79
|
}
|