ai-worktool 1.0.7 → 1.0.10
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/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/aicoder-1.0.10.tgz +0 -0
- package/dist/program.js +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
Binary file
|
package/dist/program.js
CHANGED
@@ -10,9 +10,9 @@ const testAgent_1 = require("./testAgent");
|
|
10
10
|
const tools_1 = require("./tools");
|
11
11
|
const view_1 = require("./view");
|
12
12
|
const program = new commander_1.Command();
|
13
|
-
program.name('
|
13
|
+
program.name('testAgent').description('吃豆豆:单测智能体').version('1.0.0');
|
14
14
|
program
|
15
|
-
.command('
|
15
|
+
.command('start')
|
16
16
|
.description('启动单测智能体,根据源代码文件开始补全单测代码,直到覆盖率100%')
|
17
17
|
.option('-p, --platform <string>', '智能体平台', 'jianguoke')
|
18
18
|
.option('-r, --projectRoot <directory>', '源代码文件夹', (txt) => path_1.default.resolve(txt), process.cwd())
|
package/package.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"name": "ai-worktool",
|
3
3
|
"displayName": "吃豆豆:单测智能体",
|
4
|
-
"version": "1.0.
|
4
|
+
"version": "1.0.10",
|
5
5
|
"description": "单元测试智能体,帮你开发单元测试用例代码直到100%单测覆盖通过。",
|
6
6
|
"author": "jianguoke.cn",
|
7
7
|
"license": "MIT",
|
8
8
|
"repository": "https://codeup.aliyun.com/666cf9ed29ecbe23053513a3/JianGuoKe/ai-worktools",
|
9
9
|
"bin": {
|
10
|
-
"
|
10
|
+
"testAgent": "dist/cli.js"
|
11
11
|
},
|
12
12
|
"scripts": {
|
13
13
|
"watch": "tsc -w",
|
@@ -19,11 +19,11 @@
|
|
19
19
|
"ver": "node ./updatever.js",
|
20
20
|
"remove-deps": "node ./remove-deps.js",
|
21
21
|
"restore-deps": "node ./restore-deps.js",
|
22
|
-
"pub": "yarn remove-deps && yarn changelog && vsce publish --yarn --baseContentUrl https://
|
23
|
-
"pubovsx": "yarn remove-deps && ovsx publish -p 47621ff6-be56-4814-865e-d2a8e8a76f86 --yarn --baseContentUrl https://
|
24
|
-
"puball": "yarn
|
22
|
+
"pub": "yarn remove-deps && yarn changelog && vsce publish --yarn --baseContentUrl https://aicoder.jianguoke.cn/assets && yarn restore-deps",
|
23
|
+
"pubovsx": "yarn remove-deps && ovsx publish -p 47621ff6-be56-4814-865e-d2a8e8a76f86 --yarn --baseContentUrl https://aicoder.jianguoke.cn/assets && yarn restore-deps",
|
24
|
+
"puball": "yarn ver && yarn pub && yarn pubovsx && npm publish",
|
25
25
|
"patch": "yarn remove-deps && vsce publish patch --yarn && yarn restore-deps",
|
26
|
-
"vspack": "yarn remove-deps && vsce package -o aicoder.vsix --yarn --baseContentUrl https://
|
26
|
+
"vspack": "yarn remove-deps && vsce package -o aicoder.vsix --yarn --baseContentUrl https://aicoder.jianguoke.cn/assets && yarn restore-deps",
|
27
27
|
"prepare": "husky"
|
28
28
|
},
|
29
29
|
"publisher": "JianGuoKe",
|