@beauraines/rtm-cli 1.11.0 → 1.12.0

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 CHANGED
@@ -2,6 +2,13 @@
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
+ ## [1.12.0](https://github.com/beauraines/rtm-cli/compare/v1.11.0...v1.12.0) (2025-12-17)
6
+
7
+
8
+ ### Features
9
+
10
+ * **task:** adds tasks as alias for task command ([#162](https://github.com/beauraines/rtm-cli/issues/162)) ([b9196ee](https://github.com/beauraines/rtm-cli/commit/b9196ee2d73680cce9ab01e39cd73e27b426fb7e)), closes [#152](https://github.com/beauraines/rtm-cli/issues/152)
11
+
5
12
  ## [1.11.0](https://github.com/beauraines/rtm-cli/compare/v1.10.0...v1.11.0) (2025-12-17)
6
13
 
7
14
 
package/README.md CHANGED
@@ -98,7 +98,7 @@ The main usage of the program:
98
98
  setUrl|su [index] [url] Set the URL of a Task
99
99
  start [index] [start...] Set the Start Date of a Task
100
100
  tags|t Display all tags
101
- task [indices...] Display the Task details
101
+ task|tasks [indices...] Display the Task details
102
102
  uncomp|unc [indices...] Mark one or more Tasks as not complete
103
103
  url [options] [indices...] Display the associated URL of a Task
104
104
  whoami Display RTM user information
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beauraines/rtm-cli",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "description": "RTM CLI",
5
5
  "keywords": [
6
6
  "rtm",
package/src/cmd/task.js CHANGED
@@ -83,6 +83,7 @@ async function action(args, env) {
83
83
 
84
84
  module.exports = {
85
85
  command: 'task [indices...]',
86
+ alias: 'tasks',
86
87
  options: [],
87
88
  description: 'Display the Task details',
88
89
  action: action