Files
bs-manager/.erb/scripts/clean.js
T
2023-07-01 22:12:47 +02:00

18 lines
421 B
JavaScript

import rimraf from "rimraf";
import process from "process";
import webpackPaths from "../configs/webpack.paths";
const args = process.argv.slice(2);
const commandMap = {
dist: webpackPaths.distPath,
release: webpackPaths.releasePath,
dll: webpackPaths.dllPath,
};
args.forEach(x => {
const pathToRemove = commandMap[x];
if (pathToRemove !== undefined) {
rimraf.sync(pathToRemove);
}
});