l7note
Version:
Access your notion notes quick
16 lines (12 loc) • 315 B
text/typescript
import { globalConfig } from '../setup.js';
import fs from 'fs';
import chalk from 'chalk';
const resetConfig = () => {
fs.unlinkSync(globalConfig.configPath);
console.log(
`${chalk.blueBright(
'Config has been removed restart the program to configure'
)}`
);
};
export { resetConfig };