mirror of
https://github.com/LukeHagar/form.git
synced 2025-12-06 04:19:43 +00:00
* chore: inital work to migrate to Query's alpha package setup * chore: update deps * chore: fix build issues * chore: disable no-children-prop rule
480 lines
13 KiB
JavaScript
480 lines
13 KiB
JavaScript
// @ts-check
|
|
// Originally ported to TS from https://github.com/remix-run/react-router/tree/main/scripts/{version,publish}.js
|
|
|
|
import path from 'node:path'
|
|
import { execSync } from 'node:child_process'
|
|
import chalk from 'chalk'
|
|
import jsonfile from 'jsonfile'
|
|
import * as semver from 'semver'
|
|
import currentGitBranch from 'current-git-branch'
|
|
import { parse as parseCommit } from '@commitlint/parse'
|
|
import log from 'git-log-parser'
|
|
import streamToArray from 'stream-to-array'
|
|
import axios from 'axios'
|
|
import { DateTime } from 'luxon'
|
|
import { branchConfigs, packages, rootDir } from './config.js'
|
|
|
|
/** @param {string} version */
|
|
const releaseCommitMsg = (version) => `release: v${version}`
|
|
|
|
async function run() {
|
|
const branchName =
|
|
/** @type {string} */ process.env.BRANCH ?? currentGitBranch()
|
|
|
|
const isMainBranch = branchName === 'main'
|
|
const npmTag = isMainBranch ? 'latest' : branchName
|
|
|
|
// Get tags
|
|
/** @type {string[]} */
|
|
let tags = execSync('git tag').toString().split('\n')
|
|
|
|
// Filter tags to our branch/pre-release combo
|
|
tags = tags
|
|
.filter((tag) => semver.valid(tag))
|
|
.filter((tag) => {
|
|
if (semver.prerelease(tag) === null) {
|
|
return isMainBranch
|
|
} else {
|
|
return !isMainBranch
|
|
}
|
|
})
|
|
// sort by latest
|
|
.sort(semver.compare)
|
|
|
|
// Get the latest tag
|
|
let latestTag = /** @type {string} */ [...tags].pop()
|
|
|
|
let range = `${latestTag}..HEAD`
|
|
// let range = ``;
|
|
|
|
// If RELEASE_ALL is set via a commit subject or body, all packages will be
|
|
// released regardless if they have changed files matching the package srcDir.
|
|
let RELEASE_ALL = false
|
|
|
|
if (!latestTag || process.env.TAG) {
|
|
if (process.env.TAG) {
|
|
if (!process.env.TAG.startsWith('v')) {
|
|
throw new Error(
|
|
`process.env.TAG must start with "v", eg. v0.0.0. You supplied ${process.env.TAG}`,
|
|
)
|
|
}
|
|
console.info(
|
|
chalk.yellow(
|
|
`Tag is set to ${process.env.TAG}. This will force release all packages. Publishing...`,
|
|
),
|
|
)
|
|
RELEASE_ALL = true
|
|
|
|
// Is it a major version?
|
|
if (!semver.patch(process.env.TAG) && !semver.minor(process.env.TAG)) {
|
|
range = `origin/main..HEAD`
|
|
latestTag = process.env.TAG
|
|
}
|
|
} else {
|
|
throw new Error(
|
|
'Could not find latest tag! To make a release tag of v0.0.1, run with TAG=v0.0.1',
|
|
)
|
|
}
|
|
}
|
|
|
|
console.info(`Git Range: ${range}`)
|
|
|
|
/**
|
|
* Get the commits since the latest tag
|
|
* @type {import('./types.js').Commit[]}
|
|
*/
|
|
const commitsSinceLatestTag = (
|
|
await new Promise((resolve, reject) => {
|
|
/** @type {NodeJS.ReadableStream} */
|
|
const strm = log.parse({
|
|
_: range,
|
|
})
|
|
|
|
streamToArray(strm, function (err, arr) {
|
|
if (err) return reject(err)
|
|
|
|
Promise.all(
|
|
arr.map(async (d) => {
|
|
const parsed = await parseCommit(d.subject)
|
|
|
|
return { ...d, parsed }
|
|
}),
|
|
).then((res) => resolve(res.filter(Boolean)))
|
|
})
|
|
})
|
|
).filter((/** @type {import('./types.js').Commit} */ commit) => {
|
|
const exclude = [
|
|
commit.subject.startsWith('Merge branch '), // No merge commits
|
|
commit.subject.startsWith(releaseCommitMsg('')), // No example update commits
|
|
].some(Boolean)
|
|
|
|
return !exclude
|
|
})
|
|
|
|
console.info(
|
|
`Parsing ${commitsSinceLatestTag.length} commits since ${latestTag}...`,
|
|
)
|
|
|
|
/**
|
|
* Parses the commit messsages, log them, and determine the type of release needed
|
|
* -1 means no release is necessary
|
|
* 0 means patch release is necessary
|
|
* 1 means minor release is necessary
|
|
* 2 means major release is necessary
|
|
* @type {number}
|
|
*/
|
|
let recommendedReleaseLevel = commitsSinceLatestTag.reduce(
|
|
(releaseLevel, commit) => {
|
|
if (commit.parsed.type) {
|
|
if (['fix', 'refactor', 'perf'].includes(commit.parsed.type)) {
|
|
releaseLevel = Math.max(releaseLevel, 0)
|
|
}
|
|
if (['feat'].includes(commit.parsed.type)) {
|
|
releaseLevel = Math.max(releaseLevel, 1)
|
|
}
|
|
if (commit.body.includes('BREAKING CHANGE')) {
|
|
releaseLevel = Math.max(releaseLevel, 2)
|
|
}
|
|
if (
|
|
commit.subject.includes('RELEASE_ALL') ||
|
|
commit.body.includes('RELEASE_ALL')
|
|
) {
|
|
RELEASE_ALL = true
|
|
}
|
|
}
|
|
|
|
return releaseLevel
|
|
},
|
|
-1,
|
|
)
|
|
|
|
/**
|
|
* Uses git diff to determine which files have changed since the latest tag
|
|
* @type {string[]}
|
|
*/
|
|
const changedFiles = process.env.TAG
|
|
? []
|
|
: execSync(`git diff ${latestTag} --name-only`)
|
|
.toString()
|
|
.split('\n')
|
|
.filter(Boolean)
|
|
|
|
/** Uses packages and changedFiles to determine which packages have changed */
|
|
const changedPackages = RELEASE_ALL
|
|
? packages
|
|
: packages.filter((pkg) => {
|
|
const changed = changedFiles.some(
|
|
(file) =>
|
|
file.startsWith(path.join(pkg.packageDir, 'src')) ||
|
|
file.startsWith(path.join(pkg.packageDir, 'package.json')),
|
|
)
|
|
return changed
|
|
})
|
|
|
|
// If a package has a dependency that has been updated, we need to update the
|
|
// package that depends on it as well.
|
|
// run this multiple times so that dependencies of dependencies are also included
|
|
for (let runs = 0; runs < 3; runs++) {
|
|
for (const pkg of packages) {
|
|
const packageJson = await readPackageJson(
|
|
path.resolve(rootDir, pkg.packageDir, 'package.json'),
|
|
)
|
|
const allDependencies = Object.keys(
|
|
Object.assign(
|
|
{},
|
|
packageJson.dependencies ?? {},
|
|
packageJson.peerDependencies ?? {},
|
|
),
|
|
)
|
|
|
|
if (
|
|
allDependencies.find((dep) =>
|
|
changedPackages.find((d) => d.name === dep),
|
|
) &&
|
|
!changedPackages.find((d) => d.name === pkg.name)
|
|
) {
|
|
console.info(
|
|
'adding package dependency',
|
|
pkg.name,
|
|
'to changed packages',
|
|
)
|
|
changedPackages.push(pkg)
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!process.env.TAG) {
|
|
if (recommendedReleaseLevel === 2) {
|
|
console.info(
|
|
`Major versions releases must be tagged and released manually.`,
|
|
)
|
|
return
|
|
}
|
|
|
|
if (recommendedReleaseLevel === -1) {
|
|
console.info(
|
|
`There have been no changes since the release of ${latestTag} that require a new version. You're good!`,
|
|
)
|
|
return
|
|
}
|
|
}
|
|
|
|
const changelogCommitsMd = process.env.TAG
|
|
? `Manual Release: ${process.env.TAG}`
|
|
: await Promise.all(
|
|
Object.entries(
|
|
commitsSinceLatestTag.reduce(
|
|
(acc, next) => {
|
|
const type = next.parsed.type?.toLowerCase() ?? 'other'
|
|
|
|
return {
|
|
...acc,
|
|
[type]: [...(acc[type] || []), next],
|
|
}
|
|
},
|
|
/** @type {Record<string, import('./types.js').Commit[]>} */ {},
|
|
),
|
|
)
|
|
.sort(
|
|
getSorterFn([
|
|
([d]) =>
|
|
[
|
|
'other',
|
|
'examples',
|
|
'docs',
|
|
'chore',
|
|
'refactor',
|
|
'perf',
|
|
'fix',
|
|
'feat',
|
|
].indexOf(d),
|
|
]),
|
|
)
|
|
.reverse()
|
|
.map(async ([type, commits]) => {
|
|
return Promise.all(
|
|
commits.map(async (commit) => {
|
|
let username = ''
|
|
|
|
if (process.env.GH_TOKEN) {
|
|
const query = `${
|
|
commit.author.email || commit.committer.email
|
|
}`
|
|
|
|
const res = await axios.get(
|
|
'https://api.github.com/search/users',
|
|
{
|
|
params: {
|
|
q: query,
|
|
},
|
|
headers: {
|
|
Authorization: `token ${process.env.GH_TOKEN}`,
|
|
},
|
|
},
|
|
)
|
|
|
|
username = res.data.items[0]?.login
|
|
}
|
|
|
|
const scope = commit.parsed.scope
|
|
? `${commit.parsed.scope}: `
|
|
: ''
|
|
const subject = commit.parsed.subject || commit.subject
|
|
|
|
return `- ${scope}${subject} (${commit.commit.short}) ${
|
|
username
|
|
? `by @${username}`
|
|
: `by ${commit.author.name || commit.author.email}`
|
|
}`
|
|
}),
|
|
).then((c) => /** @type {const} */ [type, c])
|
|
}),
|
|
).then((groups) => {
|
|
return groups
|
|
.map(([type, commits]) => {
|
|
return [`### ${capitalize(type)}`, commits.join('\n')].join('\n\n')
|
|
})
|
|
.join('\n\n')
|
|
})
|
|
|
|
if (process.env.TAG && recommendedReleaseLevel === -1) {
|
|
recommendedReleaseLevel = 0
|
|
}
|
|
|
|
/** @type {import('./types.js').BranchConfig | undefined} */
|
|
const branchConfig = branchConfigs[branchName]
|
|
|
|
if (!branchConfig) {
|
|
console.log(`No publish config found for branch: ${branchName}`)
|
|
console.log('Exiting...')
|
|
process.exit(0)
|
|
}
|
|
|
|
const releaseType = branchConfig.prerelease
|
|
? 'prerelease'
|
|
: /** @type {const} */ { 0: 'patch', 1: 'minor', 2: 'major' }[
|
|
recommendedReleaseLevel
|
|
]
|
|
|
|
if (!releaseType) {
|
|
throw new Error(`Invalid release level: ${recommendedReleaseLevel}`)
|
|
}
|
|
|
|
const version = process.env.TAG
|
|
? semver.parse(process.env.TAG)?.version
|
|
: semver.inc(latestTag, releaseType, npmTag)
|
|
|
|
if (!version) {
|
|
throw new Error(
|
|
`Invalid version increment from semver.inc(${[
|
|
latestTag,
|
|
recommendedReleaseLevel,
|
|
branchConfig.prerelease,
|
|
].join(', ')}`,
|
|
)
|
|
}
|
|
|
|
const changelogMd = [
|
|
`Version ${version} - ${DateTime.now().toLocaleString(
|
|
DateTime.DATETIME_SHORT,
|
|
)}`,
|
|
`## Changes`,
|
|
changelogCommitsMd,
|
|
`## Packages`,
|
|
changedPackages.map((d) => `- ${d.name}@${version}`).join('\n'),
|
|
].join('\n\n')
|
|
|
|
console.info('Generating changelog...')
|
|
console.info()
|
|
console.info(changelogMd)
|
|
console.info()
|
|
|
|
if (changedPackages.length === 0) {
|
|
console.info('No packages have been affected.')
|
|
return
|
|
}
|
|
|
|
console.info(`Updating all changed packages to version ${version}...`)
|
|
// Update each package to the new version
|
|
for (const pkg of changedPackages) {
|
|
console.info(` Updating ${pkg.name} version to ${version}...`)
|
|
|
|
await updatePackageJson(
|
|
path.resolve(rootDir, pkg.packageDir, 'package.json'),
|
|
(config) => {
|
|
config.version = version
|
|
},
|
|
)
|
|
}
|
|
|
|
if (!process.env.CI) {
|
|
console.warn(
|
|
`This is a dry run for version ${version}. Push to CI to publish for real or set CI=true to override!`,
|
|
)
|
|
return
|
|
}
|
|
|
|
console.info()
|
|
console.info(`Publishing all packages to npm with tag "${npmTag}"`)
|
|
|
|
// Publish each package
|
|
changedPackages.forEach((pkg) => {
|
|
const packageDir = path.join(rootDir, pkg.packageDir)
|
|
const cmd = `cd ${packageDir} && pnpm publish --tag ${npmTag} --access=public --no-git-checks`
|
|
console.info(
|
|
` Publishing ${pkg.name}@${version} to npm with tag "${npmTag}"...`,
|
|
)
|
|
execSync(cmd, {
|
|
stdio: [process.stdin, process.stdout, process.stderr],
|
|
})
|
|
})
|
|
|
|
console.info()
|
|
|
|
console.info(`Committing changes...`)
|
|
execSync(`git add -A && git commit -m "${releaseCommitMsg(version)}"`)
|
|
console.info()
|
|
console.info(` Committed Changes.`)
|
|
|
|
console.info(`Pushing changes...`)
|
|
execSync(`git push`)
|
|
console.info()
|
|
console.info(` Changes pushed.`)
|
|
|
|
console.info(`Creating new git tag v${version}`)
|
|
execSync(`git tag -a -m "v${version}" v${version}`)
|
|
|
|
console.info(`Pushing tags...`)
|
|
execSync(`git push --tags`)
|
|
console.info()
|
|
console.info(` Tags pushed.`)
|
|
|
|
console.info(`Creating github release...`)
|
|
// Stringify the markdown to excape any quotes
|
|
execSync(
|
|
`gh release create v${version} ${
|
|
!isMainBranch ? '--prerelease' : ''
|
|
} --notes '${changelogMd.replace(/'/g, '"')}'`,
|
|
)
|
|
console.info(` Github release created.`)
|
|
|
|
console.info(`All done!`)
|
|
}
|
|
|
|
run().catch((err) => {
|
|
console.info(err)
|
|
process.exit(1)
|
|
})
|
|
|
|
/** @param {string} str */
|
|
function capitalize(str) {
|
|
return str.slice(0, 1).toUpperCase() + str.slice(1)
|
|
}
|
|
|
|
/**
|
|
* @param {string} pathName
|
|
* @returns {Promise<import('type-fest').PackageJson>}
|
|
*/
|
|
async function readPackageJson(pathName) {
|
|
return await jsonfile.readFile(pathName)
|
|
}
|
|
|
|
/**
|
|
* @param {string} pathName
|
|
* @param {(json: import('type-fest').PackageJson) => Promise<void> | void} transform
|
|
*/
|
|
async function updatePackageJson(pathName, transform) {
|
|
const json = await readPackageJson(pathName)
|
|
await transform(json)
|
|
await jsonfile.writeFile(pathName, json, {
|
|
spaces: 2,
|
|
})
|
|
}
|
|
|
|
/**
|
|
* @template TItem
|
|
* @param {((d: TItem) => any)[]} sorters
|
|
* @returns {(a: TItem, b: TItem) => number}
|
|
*/
|
|
function getSorterFn(sorters) {
|
|
return (a, b) => {
|
|
let i = 0
|
|
|
|
sorters.some((sorter) => {
|
|
const sortedA = sorter(a)
|
|
const sortedB = sorter(b)
|
|
if (sortedA > sortedB) {
|
|
i = 1
|
|
return true
|
|
}
|
|
if (sortedA < sortedB) {
|
|
i = -1
|
|
return true
|
|
}
|
|
return false
|
|
})
|
|
|
|
return i
|
|
}
|
|
}
|