taskninja 1.1.4 → 1.1.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/package.json +1 -1
- package/src/index.js +2 -2
package/package.json
CHANGED
package/src/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.5
|
|
15
15
|
* @license MIT
|
|
16
16
|
* Copyright (c) 2026 Mohamed Bakr
|
|
17
17
|
*/
|
|
@@ -39,7 +39,7 @@ import { loadTasks, saveTasks, getNextId, saveDeletedTask, loadDeletedTask, clea
|
|
|
39
39
|
program
|
|
40
40
|
.name("taskninja")
|
|
41
41
|
.description("A simple CLI application to manage your tasks")
|
|
42
|
-
.version("1.1.
|
|
42
|
+
.version("1.1.5");
|
|
43
43
|
|
|
44
44
|
// use command 'add' with title + status + priority + dueDate + description and action
|
|
45
45
|
program
|