UNPKG

@enjin/ionic1

Version:

A comprehensive build system for Ionic 1 apps by Madness Labs as part of the Madness Enjin

11 lines (9 loc) 278 B
const exec = require('child_process').exec; module.exports = function(callback) { exec('git reset --hard', function(error, stdout, stderr) { console.log(stdout); if (callback && typeof callback === 'function') { callback(); } }); };