Skip to content

Commit d8bdb65

Browse files
committed
🔧 chore(app): 测试
1 parent 853b82f commit d8bdb65

File tree

10 files changed

+2798
-9
lines changed

10 files changed

+2798
-9
lines changed

api-model/api-clear.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { clear } from "../src/index";
1+
import { clear } from "code-genius";
22

33
(async () => {
44
await clear(["./dist"]);

api-model/api-commit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { gitCommit } from "../src/index";
1+
import { gitCommit } from "code-genius";
22

33
(async () => {
44
await gitCommit("fix(feat): 修复xx功能的xxBug");

api-model/api-depcheck.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { npmDepCheck } from "../src/index";
1+
import { npmDepCheck } from "code-genius";
22

33
(async () => {
44
await npmDepCheck();

api-model/api-gituser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
setGitUserEmail,
44
checkGitUserName,
55
checkGitUserEmail,
6-
} from "../src/index";
6+
} from "code-genius";
77

88
(async () => {
99
await setGitUserName("OSpoon", "[\\s\\S]*");

api-model/api-hooks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { gitInitSimpleHooks } from "../src/index";
1+
import { gitInitSimpleHooks } from "code-genius";
22

33
(async () => {
44
await gitInitSimpleHooks();

api-model/api-impsort.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { impSort } from "../src/index";
1+
import { impSort } from "code-genius";
22

33
(async () => {
4-
await impSort(["./src"]);
4+
await impSort(["./api-impsort.ts"]);
55
})();

api-model/api-registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { npmRegistry } from "../src/index";
1+
import { npmRegistry } from "code-genius";
22

33
(async () => {
44
await npmRegistry("https://registry.npmjs.org/");

api-model/api-verify.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { gitCommitVerify } from "../src/index";
1+
import { gitCommitVerify } from "code-genius";
22

33
(async () => {
44
await gitCommitVerify();

0 commit comments

Comments
 (0)