2025-10-26 15:23:56 +00:00
|
|
|
import * as plugins from './mod.plugins.ts';
|
|
|
|
|
import * as paths from '../szci.paths.ts';
|
2016-06-26 04:54:10 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* cleans npmci config files
|
|
|
|
|
*/
|
2017-03-07 18:07:03 +01:00
|
|
|
export let clean = async (): Promise<void> => {
|
2025-10-26 15:23:56 +00:00
|
|
|
plugins.smartfile.fs.removeSync(paths.SzciPackageConfig);
|
2018-04-04 22:25:13 +02:00
|
|
|
return;
|
|
|
|
|
};
|