UNPKG
ykpm
Version:
latest (2.5.0)
2.5.0
2.4.0
2.3.29
2.3.28
2.3.27
2.3.25
2.3.21
2.3.20
2.2.20
2.2.19
2.2.18
2.2.17
2.2.16
2.2.15
2.2.14
2.2.13
2.2.12
2.2.11
2.2.10
2.2.9
2.2.8
2.2.7
2.2.6
2.2.5
2.1.5
2.1.4
2.1.3
2.1.2
2.1.1
2.0.1
2.0.0
1.0.1
1.0.0
基于webpak封装的打包工具,集成打包、调试、代理、ajax劫持模拟数据
github.com/beliefgp/ykpm
beliefgp/ykpm
ykpm
/
lib
/
install.js
12 lines
(9 loc)
•
214 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'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
]}
`
); } };