UNPKG

ember-introjs

Version:
10 lines (8 loc) 252 B
var execSync = require('child_process').execSync; module.exports = { // Publish the new release to NPM after a successful push afterPush: function() { var output = execSync('npm publish', { encoding: 'utf8' }); console.log(output); } };