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 abd99aa commit ae552ceCopy full SHA for ae552ce
1 file changed
packages/cli-v3/src/dev/devSession.ts
@@ -148,14 +148,6 @@ export async function startDevSession({
148
if (bundled) {
149
eventBus.emit("rebuildStarted", "dev");
150
}
151
-
152
- const outdir = b.initialOptions.outdir;
153
- if (outdir && existsSync(outdir)) {
154
- logger.debug("Removing outdir", { outdir });
155
156
- rmSync(outdir, { recursive: true, force: true });
157
- mkdirSync(outdir, { recursive: true });
158
- }
159
});
160
b.onEnd(async (result: esbuild.BuildResult) => {
161
const errors = result.errors;
0 commit comments