We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7016dbc commit 3cf06b1Copy full SHA for 3cf06b1
package/src/common/prepare-dist.ts
@@ -171,9 +171,7 @@ export async function prepareDist(
171
const configDir = join(config.directoryInfo.dist, "config");
172
info(configDir);
173
if (existsSync(configDir)) {
174
- Deno.removeSync(configDir, {
175
- recursive: true,
176
- });
+ Deno.removeSync(configDir, { recursive: true });
177
}
178
179
info("");
@@ -210,7 +208,6 @@ function supportingFiles(config: Configuration) {
210
208
// compiled later
211
209
const pathsToClean = [
212
join(config.directoryInfo.pkgWorking.share, "filters"),
213
- join(config.directoryInfo.pkgWorking.share, "vendor"),
214
];
215
pathsToClean.forEach((path) => Deno.removeSync(path, { recursive: true }));
216
0 commit comments