npmci/ts/mod_clean/index.ts
PhilKunz External b6a85319b0 Go modular
2017-05-18 20:40:09 +00:00

11 lines
238 B
TypeScript

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