taskninja 1.1.9 → 1.2.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/package.json +5 -5
- package/src/index.js +2 -2
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "taskninja",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "a simple CLI application with JS as a (To-Do Application)",
|
|
5
|
-
"main": "./index.js",
|
|
5
|
+
"main": "./src/index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"dev": "node src/index.js"
|
|
11
11
|
},
|
|
12
12
|
"bin": {
|
|
13
|
-
"dotask": "./index.js",
|
|
14
|
-
"taskninja": "./index.js",
|
|
15
|
-
"tn": "./index.js"
|
|
13
|
+
"dotask": "./src/index.js",
|
|
14
|
+
"taskninja": "./src/index.js",
|
|
15
|
+
"tn": "./src/index.js"
|
|
16
16
|
},
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
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.
|
|
14
|
+
* Version: 1.2.0
|
|
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.
|
|
38
|
+
.version("1.2.0");
|
|
39
39
|
|
|
40
40
|
// use command 'add' with title + status + priority + dueDate + description and action
|
|
41
41
|
program
|