Skip to content

Commit 34ea71f

Browse files
committed
refactor(cli): 统一stdio辅助函数导入路径风格
- 将cli.tsx和cli-args.ts中stdioHelpers的导入路径调整为统一的stdio-helpers格式 - 规范了模块文件命名,提高代码一致性 - 未改动核心功能逻辑,仅更改导入路径字符串
1 parent 7a447b8 commit 34ea71f

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

packages/cli/src/utils/package.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@ import { fileURLToPath } from "node:url";
33
import path from "node:path";
44
import { CLI_VERSION } from "../generated/git-commit";
55

6-
export type PackageJson = BasePackageJson & {
7-
config?: {
8-
sandboxImageUri?: string;
9-
};
10-
};
6+
export type PackageJson = BasePackageJson;
117

128
const __filename = fileURLToPath(import.meta.url);
139
const __dirname = path.dirname(__filename);

0 commit comments

Comments
 (0)