UNPKG

ember-app-scheduler

Version:

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

7 lines 256 B
if (process.platform === 'darwin') { var spawn = require('child_process').spawn; var args = ['install', '--fallback-to-build']; var options = {stdio: 'inherit'}; var child = spawn('node-pre-gyp', args, options); child.on('close', process.exit); }