ba26324058
follow up to #3009 the versions.ts files were not being updated since things had been added and moved around ### Change Type - [ ] `patch` — Bug fix - [ ] `minor` — New feature - [ ] `major` — Breaking change - [ ] `dependencies` — Changes to package dependencies[^1] - [ ] `documentation` — Changes to the documentation only[^2] - [ ] `tests` — Changes to any test code only[^2] - [x] `internal` — Any other changes that don't affect the published package[^2] - [ ] I don't know [^1]: publishes a `patch` release, for devDependencies use `internal` [^2]: will not publish a new version ### Test Plan 1. Add a step-by-step description of how to test your PR here. 2. - [ ] Unit Tests - [ ] End to end tests ### Release Notes - Add a brief release note for your PR here.
39 lines
1.2 KiB
TypeScript
39 lines
1.2 KiB
TypeScript
import { exec } from './lib/exec'
|
|
import { nicelog } from './lib/nicelog'
|
|
import { getLatestVersion, publish, setAllVersions } from './lib/publishing'
|
|
|
|
async function main() {
|
|
const sha = (await exec('git', ['rev-parse', 'HEAD'])).trim().slice(0, 12)
|
|
|
|
async function setCanaryVersions(bump: 'major' | 'minor' | 'patch') {
|
|
const latestVersion = await getLatestVersion()
|
|
|
|
const nextVersion = latestVersion.prerelease.length
|
|
? // if the package is in prerelease mode, we want to release a canary for the current version rather than bumping
|
|
latestVersion
|
|
: latestVersion?.inc(bump)
|
|
const versionString = `${nextVersion.major}.${nextVersion.minor}.${nextVersion.patch}-canary.${sha}`
|
|
|
|
await setAllVersions(versionString)
|
|
}
|
|
|
|
// module was called directly
|
|
const bumpType = (await exec('npx', ['auto', 'version'])).trim() as
|
|
| 'major'
|
|
| 'minor'
|
|
| 'patch'
|
|
| ''
|
|
|
|
nicelog('bumpType', bumpType)
|
|
if (bumpType === '') {
|
|
nicelog('nothing to do')
|
|
} else if (['major', 'minor', 'patch'].includes(bumpType)) {
|
|
nicelog('setting canary versions')
|
|
setCanaryVersions(bumpType)
|
|
publish()
|
|
} else {
|
|
throw new Error('Invalid bump type provided')
|
|
}
|
|
}
|
|
|
|
main()
|