-
cross-os:允许在 package.json 中添加特定于操作系统的脚本!下载
资源介绍
跨操作系统
操作系统特定的 npm 脚本! 适用于不同操作系统平台的任务
安装
$ npm install cross-os --save-dev
用法
将脚本添加到您的 package.json 中,如下所示:
它支持darwin , freebsd , linux , sunos或win32
" scripts " : {
" foo " : " cross-os bar " ,
" bar " : {
" darwin " : " echo 'i will only run on Mac' " ,
" win32 " : " echo 'i will only run on Windows' " ,
" linux " : " echo 'i will only run on Linux' "
}
}
并称之为:
npm run fo