1 Star 0 Fork 804

chentao / uni-app

forked from DCloud / uni-app 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
unpublish.js 477 Bytes
一键复制 编辑 原始数据 按行查看 历史
fxy060608 提交于 2019-10-19 18:52 . add unpublish.js
const fs = require('fs')
const path = require('path')
const shellExec = require('shell-exec')
const pkgs = fs.readdirSync(path.resolve(__dirname, 'packages'))
const version = process.argv[2]
if (!version) {
throw new Error('必须传入 version')
}
(async function() {
for (let i = 0; i < pkgs.length; i++) {
console.log(`npm unpublish @dcloudio/${pkgs[i]}@${version}`);
await shellExec(`npm unpublish @dcloudio/${pkgs[i]}@${version}`)
}
})();
JavaScript
1
https://gitee.com/pearlshell/uni-app.git
git@gitee.com:pearlshell/uni-app.git
pearlshell
uni-app
uni-app
master

搜索帮助