UNPKG

ykpm

Version:

基于webpak封装的打包工具,集成打包、调试、代理、ajax劫持模拟数据

12 lines (9 loc) 214 B
'use strict'; const path = require('path'); const shell = require('shelljs'); module.exports = { run: function (cwd, args) { shell.cd(path.join(__dirname, '..')); shell.exec(`npm install ${args[0]}`); } };