UNPKG

191 BJavaScriptView Raw
1function npmInstall() {
2 'use strong';
3
4 const chalk = require('chalk');
5 const exec = require('executive');
6
7 exec('npm i -S --silent');
8}
9
10
11module.exports.install = npmInstall;