feat: 添加上传和列出命令的本地文件选项

This commit is contained in:
2026-03-12 14:51:34 +08:00
parent 3243baa872
commit 9df4021d68
2 changed files with 16 additions and 2 deletions

View File

@@ -20,7 +20,13 @@ const checkAuth = (value: string = '', baseURL: string = '') => {
};
const DEFAULT_IGNORE = [
'node_modules/**', '.git/**', '.next/**', '.astro/**', '.pack-dist/**',
'node_modules/**',
'.git/**',
'.next/**',
'.astro/**',
'.pack-dist/**',
"dist/**",
".swc/**"
];
export class SyncBase {
config: Config;