UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

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); } };