Skip to content

Commit

Permalink
Delete gen-webpack.node.config.js with clean command (#12975)
Browse files Browse the repository at this point in the history
Signed-off-by: Leo Graf <[email protected]>
  • Loading branch information
ozfox authored Oct 24, 2023
1 parent e4356c3 commit 41c17dd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,12 @@ export class ApplicationPackageManager {
}

async clean(): Promise<void> {
const webpackGenerator = new WebpackGenerator(this.pck);
await Promise.all([
this.remove(this.pck.lib()),
this.remove(this.pck.srcGen()),
this.remove(new WebpackGenerator(this.pck).genConfigPath)
this.remove(webpackGenerator.genConfigPath),
this.remove(webpackGenerator.genNodeConfigPath)
]);
}

Expand Down

0 comments on commit 41c17dd

Please sign in to comment.