2016-11-25 12:25:45 +00:00
|
|
|
import * as plugins from './npmci.plugins'
|
|
|
|
import * as paths from './npmci.paths'
|
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> => {
|
|
|
|
plugins.smartfile.fs.removeSync(paths.NpmciPackageConfig)
|
|
|
|
return
|
2016-11-25 12:25:45 +00:00
|
|
|
}
|