mirror of
https://github.com/bytedance/xgplayer.git
synced 2025-04-05 03:05:02 +08:00
chore(scripts) 最终调整npm发版命令
This commit is contained in:
parent
1763f71fa7
commit
af683b1cf2
@ -17,13 +17,13 @@ import blockList from './block-list.mjs';
|
||||
let packages = workspace.getRecursiveWorkspaceChildren().filter(pkg => !blockList.includes(pkg.manifest.raw.name))
|
||||
await Promise.all(packages.map((pkg) => {
|
||||
const pkgName = pkg.manifest.raw.name
|
||||
const prom = $`yarn workspace ${pkgName} exec npm ls`
|
||||
const prom = $`yarn workspace ${pkgName} exec npm publish`
|
||||
return prom
|
||||
.then(() => {
|
||||
console.log(pkgName, ' is successfully published')
|
||||
})
|
||||
.catch((e) => {
|
||||
console.log(pkgName, ' is failed to publish, reason: ', e.message)
|
||||
console.error(pkgName, ' is failed to publish, reason: ', e.message)
|
||||
})
|
||||
}))
|
||||
})()
|
||||
|
Loading…
x
Reference in New Issue
Block a user