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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taskninja",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "a simple CLI application with JS as a (To-Do Application)",
5
5
  "main": "./src/index.js",
6
6
  "type": "module",
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.4
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.4");
42
+ .version("1.1.5");
43
43
 
44
44
  // use command 'add' with title + status + priority + dueDate + description and action
45
45
  program