UNPKG

gpm-plugin-pub

Version:

gpm plugin for Dart project, run <pub get> after add repository

14 lines (11 loc) 249 B
/** * Created by axetroy on 17-3-10. */ const spawn = require('child_process').spawn; function npmInstall(done) { const ls = spawn('pub', ['get'], {stdio: 'inherit'}); ls.on('close', (code) => { done(); }); } exports.add = npmInstall;