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