Skip to content

Commit 3cf06b1

Browse files
committed
do not clean vendor
1 parent 7016dbc commit 3cf06b1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

package/src/common/prepare-dist.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,7 @@ export async function prepareDist(
171171
const configDir = join(config.directoryInfo.dist, "config");
172172
info(configDir);
173173
if (existsSync(configDir)) {
174-
Deno.removeSync(configDir, {
175-
recursive: true,
176-
});
174+
Deno.removeSync(configDir, { recursive: true });
177175
}
178176

179177
info("");
@@ -210,7 +208,6 @@ function supportingFiles(config: Configuration) {
210208
// compiled later
211209
const pathsToClean = [
212210
join(config.directoryInfo.pkgWorking.share, "filters"),
213-
join(config.directoryInfo.pkgWorking.share, "vendor"),
214211
];
215212
pathsToClean.forEach((path) => Deno.removeSync(path, { recursive: true }));
216213
}

0 commit comments

Comments
 (0)