@beauraines/toggl-cli 2.5.9 → 2.6.1
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 +10 -1
- package/cmds/me.mjs +1 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
### [2.
|
|
5
|
+
### [2.6.1](https://github.com/beauraines/toggl-cli/compare/v2.5.8...v2.6.1) (2026-01-01)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **deps:** bump dayjs from 1.11.13 to 1.11.19 ([#218](https://github.com/beauraines/toggl-cli/issues/218)) ([d18839a](https://github.com/beauraines/toggl-cli/commit/d18839ad675799088a310eb9c47e5a783a897546))
|
|
11
|
+
* **deps:** bump debug from 4.4.0 to 4.4.3 ([#217](https://github.com/beauraines/toggl-cli/issues/217)) ([ddd1f01](https://github.com/beauraines/toggl-cli/commit/ddd1f01180073f58c23ad82e6bb3d00fa42e716f))
|
|
12
|
+
* **deps:** bump open from 8.4.2 to 11.0.0 ([#220](https://github.com/beauraines/toggl-cli/issues/220)) ([01fd7ec](https://github.com/beauraines/toggl-cli/commit/01fd7ec6f7877ff7636b3c62be1346203cd29dad))
|
|
13
|
+
* **deps:** bump yargs from 17.7.2 to 18.0.0 ([#219](https://github.com/beauraines/toggl-cli/issues/219)) ([37c6866](https://github.com/beauraines/toggl-cli/commit/37c6866ed453383b98c086e9e0feb46d16c8f4a3))
|
|
14
|
+
* **me:** properly displays user since ([#221](https://github.com/beauraines/toggl-cli/issues/221)) ([5e31b47](https://github.com/beauraines/toggl-cli/commit/5e31b47834a6a08c53b4e10d1d4faaf51266b11a))
|
|
6
15
|
|
|
7
16
|
### [2.5.8](https://github.com/beauraines/toggl-cli/compare/v2.5.7...v2.5.8) (2025-12-18)
|
|
8
17
|
|
package/cmds/me.mjs
CHANGED
|
@@ -37,8 +37,7 @@ export const handler = async function (argv) {
|
|
|
37
37
|
const workspaces = (await client.workspaces.list()).map(w => w.name).join(', ')
|
|
38
38
|
console.log('')
|
|
39
39
|
console.log(`Workspaces: ${workspaces}`)
|
|
40
|
-
|
|
41
|
-
const since = dayjs.unix(currentUser.since)
|
|
40
|
+
const since = dayjs(currentUser.created_at)
|
|
42
41
|
console.log('')
|
|
43
42
|
console.log(`Toggl user since ${since}`)
|
|
44
43
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beauraines/toggl-cli",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "CLI client for Toggl Time Tracker",
|
|
5
5
|
"main": "cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"dayjs": "^1.11.6",
|
|
36
36
|
"debug": "^4.3.4",
|
|
37
37
|
"dotenv": "^16.0.3",
|
|
38
|
-
"open": "^
|
|
38
|
+
"open": "^11.0.0",
|
|
39
39
|
"toggl-client": "^3.1.1",
|
|
40
|
-
"yargs": "^
|
|
40
|
+
"yargs": "^18.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@eslint/eslintrc": "^3.1.0",
|