@oalacea/daemon 0.6.1 → 0.6.2
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/dist/cli/cli.js +21 -21
- package/package.json +2 -2
package/dist/cli/cli.js
CHANGED
|
@@ -51,27 +51,27 @@ export class DaemonCli {
|
|
|
51
51
|
* Show help message
|
|
52
52
|
*/
|
|
53
53
|
showHelp() {
|
|
54
|
-
console.log(`
|
|
55
|
-
Daemon v0.6.
|
|
56
|
-
|
|
57
|
-
USAGE:
|
|
58
|
-
daemon <command> [options]
|
|
59
|
-
|
|
60
|
-
COMMANDS:
|
|
61
|
-
init Initialize project with Daemon
|
|
62
|
-
detect Detect project framework and tools
|
|
63
|
-
test Generate and run tests
|
|
64
|
-
|
|
65
|
-
OPTIONS:
|
|
66
|
-
--help, -h Show this help message
|
|
67
|
-
--version Show version number
|
|
68
|
-
|
|
69
|
-
EXAMPLES:
|
|
70
|
-
daemon init
|
|
71
|
-
daemon detect
|
|
72
|
-
daemon test --coverage
|
|
73
|
-
|
|
74
|
-
For more information, visit: https://github.com/Pamacea/daemon
|
|
54
|
+
console.log(`
|
|
55
|
+
Daemon v0.6.2 - AI-powered automated testing toolkit
|
|
56
|
+
|
|
57
|
+
USAGE:
|
|
58
|
+
daemon <command> [options]
|
|
59
|
+
|
|
60
|
+
COMMANDS:
|
|
61
|
+
init Initialize project with Daemon
|
|
62
|
+
detect Detect project framework and tools
|
|
63
|
+
test Generate and run tests
|
|
64
|
+
|
|
65
|
+
OPTIONS:
|
|
66
|
+
--help, -h Show this help message
|
|
67
|
+
--version Show version number
|
|
68
|
+
|
|
69
|
+
EXAMPLES:
|
|
70
|
+
daemon init
|
|
71
|
+
daemon detect
|
|
72
|
+
daemon test --coverage
|
|
73
|
+
|
|
74
|
+
For more information, visit: https://github.com/Pamacea/daemon
|
|
75
75
|
`);
|
|
76
76
|
}
|
|
77
77
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oalacea/daemon",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "AI-powered automated test generation and remediation for web applications",
|
|
5
5
|
"author": "Yanis",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"type": "module",
|
|
12
12
|
"bin": {
|
|
13
|
-
"daemon": "./dist/cli/
|
|
13
|
+
"daemon": "./dist/cli/index.js"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"build": "tsc",
|