This commit is contained in:
yinsx
2025-12-20 17:14:43 +08:00
parent 7a6a55b535
commit 29a7a1e626
16 changed files with 172 additions and 724 deletions

View File

@ -12,7 +12,9 @@ const distDir = path.join(rootDir, "dist");
const copyTargets = [
{ from: path.join(rootDir, "index.js"), to: path.join(distDir, "index.js") },
{ from: path.join(rootDir, "lib"), to: path.join(distDir, "lib") },
{ from: path.join(rootDir, "bin"), to: path.join(distDir, "bin") }
{ from: path.join(rootDir, "bin"), to: path.join(distDir, "bin") },
{ from: path.join(rootDir, "package.json"), to: path.join(distDir, "package.json") },
{ from: path.join(rootDir, "Readme.md"), to: path.join(distDir, "Readme.md") }
];
async function main() {