Files
szci/ts/mod_clean/index.ts
2025-12-13 13:27:51 +00:00

11 lines
246 B
TypeScript

import * as plugins from './mod.plugins.ts';
import * as paths from '../szci.paths.ts';
/**
* cleans szci config files
*/
export let clean = async (): Promise<void> => {
plugins.smartfile.fs.removeSync(paths.SzciPackageConfig);
return;
};