利用npm script 来删除文件,
“scripts”: {
"clear": "rm -rf dist"
}
但存在一个问题,remove
执行的是linux和unix下的命令,并不适合window下命令。则我们需要的第三方rimraf
,在全局安装npm i -g rimraf
后,就可以执行npm run clear
。
标签:pts class window 跨平台 asc scripts move log www
利用npm script 来删除文件,
“scripts”: {
"clear": "rm -rf dist"
}
但存在一个问题,remove
执行的是linux和unix下的命令,并不适合window下命令。则我们需要的第三方rimraf
,在全局安装npm i -g rimraf
后,就可以执行npm run clear
。
标签:pts class window 跨平台 asc scripts move log www
原文地址:http://www.cnblogs.com/liangcheng11/p/8057621.html