2022-10-09 16:15:37 +00:00
|
|
|
import * as plugins from './mod.plugins.js';
|
|
|
|
import * as paths from '../npmci.paths.js';
|
2016-06-26 02:54:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* cleans npmci config files
|
|
|
|
*/
|
2017-03-07 17:07:03 +00:00
|
|
|
export let clean = async (): Promise<void> => {
|
2018-04-04 20:25:13 +00:00
|
|
|
plugins.smartfile.fs.removeSync(paths.NpmciPackageConfig);
|
|
|
|
return;
|
|
|
|
};
|