fix: exclude out/dist/build dirs and bun.lockb from skill release files

This commit is contained in:
Jim Liu 宝玉 2026-03-11 22:55:47 -05:00
parent 42b8b1fc99
commit c0941f8089
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ const PACKAGE_DEPENDENCY_SECTIONS = [
"devDependencies",
];
const SKIPPED_DIRS = new Set([".git", ".clawhub", ".clawdhub", "node_modules"]);
const SKIPPED_FILES = new Set([".DS_Store"]);
const SKIPPED_DIRS = new Set([".git", ".clawhub", ".clawdhub", "node_modules", "out", "dist", "build"]);
const SKIPPED_FILES = new Set([".DS_Store", "bun.lockb"]);
export async function listReleaseFiles(root) {
const resolvedRoot = path.resolve(root);