1 Star 0 Fork 804

itzy / uni-app

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

搜索帮助