kopia lustrzana https://github.com/Tldraw/Tldraw
23 wiersze
820 B
TypeScript
23 wiersze
820 B
TypeScript
import { appendFileSync } from 'fs'
|
|
import { exec } from './lib/exec'
|
|
import { getLatestVersion, publish } from './lib/publishing'
|
|
|
|
// This expects the package.json files to be in the correct state.
|
|
// You might want to run this locally after a failed publish attempt on CI.
|
|
// Or if you need to hotfix a package it might be desirable to run this.
|
|
|
|
// Generate a npm automation token and run this with the NPM_TOKEN env var set.
|
|
async function main() {
|
|
const latestVersionInBranch = await getLatestVersion()
|
|
const latestVersionOnNpm = (await exec('npm', ['show', 'tldraw', 'version'])).trim()
|
|
|
|
const isLatestVersion = latestVersionInBranch.format() === latestVersionOnNpm
|
|
if (process.env.GITHUB_OUTPUT) {
|
|
appendFileSync(process.env.GITHUB_OUTPUT, `is_latest_version=${isLatestVersion}\n`)
|
|
}
|
|
|
|
publish()
|
|
}
|
|
|
|
main()
|