taskninja 1.1.7 → 1.1.8
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 +2 -2
- package/index.js +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -214,8 +214,8 @@ tn so --by priority
|
|
|
214
214
|
| Field | Allowed Values / Description | Requirement |
|
|
215
215
|
| --- | --- | --- |
|
|
216
216
|
| **Title** | Any non-empty string | Required |
|
|
217
|
-
| **Status** | `todo
|
|
218
|
-
| **Priority** | `low
|
|
217
|
+
| **Status** | `todo`, `in-progress`, `done` | Required |
|
|
218
|
+
| **Priority** | `low`, `medium`, `high` | Required |
|
|
219
219
|
| **Due Date** | Date in `YYYY-MM-DD` format | Required |
|
|
220
220
|
| **Description** | Any text providing task details | Optional |
|
|
221
221
|
|
package/index.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* - fs: For file system operations
|
|
12
12
|
* Author: Mohamed Bakr
|
|
13
13
|
* Date: January 2026
|
|
14
|
-
* Version: 1.1.
|
|
14
|
+
* Version: 1.1.8
|
|
15
15
|
* @license MIT
|
|
16
16
|
* Copyright (c) 2026 Mohamed Bakr
|
|
17
17
|
* @MoBMoCaffeine
|
|
@@ -35,7 +35,7 @@ const program = new Command();
|
|
|
35
35
|
program
|
|
36
36
|
.name("taskninja")
|
|
37
37
|
.description("A simple CLI application to manage your tasks")
|
|
38
|
-
.version("1.1.
|
|
38
|
+
.version("1.1.8");
|
|
39
39
|
|
|
40
40
|
// use command 'add' with title + status + priority + dueDate + description and action
|
|
41
41
|
program
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taskninja",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "a simple CLI application with JS as a (To-Do Application)",
|
|
5
|
-
"main": "./
|
|
5
|
+
"main": "./index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"bin": {
|
|
13
13
|
"dotask": "./index.js",
|
|
14
14
|
"taskninja": "./index.js",
|
|
15
|
-
"tn": "./
|
|
15
|
+
"tn": "./index.js"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|