2018-01-11 09:22:58 -05:00
|
|
|
var fs = require('../core/fs.js');
|
|
|
|
|
|
|
|
module.exports = function() {
|
|
|
|
fs.removeSync('./chains.json');
|
|
|
|
fs.removeSync('.embark/');
|
|
|
|
fs.removeSync('dist/');
|
2018-05-08 17:49:46 -04:00
|
|
|
console.log(__("reset done!").green);
|
2018-01-11 09:22:58 -05:00
|
|
|
};
|