106 lines
3.1 KiB
JavaScript
106 lines
3.1 KiB
JavaScript
const cp = require('child_process')
|
|
const fs = require('fs')
|
|
const path = require('path')
|
|
const { listPackages } = require('./publish')
|
|
const { getLatestTag, findChangedFilesSince } = require('./git-utils')
|
|
|
|
getTsconfigFiles.cache = {}
|
|
|
|
function getTsconfigFiles(pkg) {
|
|
if (!fs.existsSync(path.join(__dirname, `../packages/${pkg}/tsconfig.json`))) {
|
|
throw new Error(`[!] ${pkg} does not have a tsconfig.json`)
|
|
}
|
|
if (pkg in getTsconfigFiles.cache) return getTsconfigFiles.cache[pkg]
|
|
|
|
console.log('[i] Getting tsconfig files for %s', pkg)
|
|
const res = cp.execSync('pnpm exec tsc --showConfig', {
|
|
encoding: 'utf8',
|
|
stdio: 'pipe',
|
|
cwd: path.join(__dirname, `../packages/${pkg}`),
|
|
})
|
|
|
|
const json = JSON.parse(res)
|
|
|
|
return (getTsconfigFiles.cache[pkg] = json.files.map((it) => it.replace(/^\.\//, '')))
|
|
}
|
|
|
|
function isMeaningfulChange(pkg, path) {
|
|
// some magic heuristics stuff
|
|
|
|
if (path.match(/\.(md|test(?:-utils)?\.ts)$/i)) return false
|
|
|
|
if (getTsconfigFiles(pkg).indexOf(path) > -1) {
|
|
console.log('[i] %s: %s is in tsconfig', pkg, path)
|
|
|
|
return true
|
|
}
|
|
|
|
if (path.match(/typedoc\.cjs$/i)) return false
|
|
if (path.match(/^(scripts|dist|tests|private)\//i)) return false
|
|
|
|
console.log('[i] %s: %s is a meaningful change', pkg, path)
|
|
|
|
// to be safe
|
|
return true
|
|
}
|
|
|
|
function findChangedPackagesSince(tag, until) {
|
|
const packages = new Set(listPackages(true))
|
|
const changedFiles = findChangedFilesSince(tag, until)
|
|
|
|
const changedPackages = new Set()
|
|
|
|
for (const file of changedFiles) {
|
|
const [dir, pkgname, ...rest] = file.split('/')
|
|
if (dir !== 'packages') continue
|
|
if (!packages.has(pkgname)) continue
|
|
|
|
// already checked, no need to check again
|
|
if (changedPackages.has(pkgname)) continue
|
|
|
|
const relpath = rest.join('/')
|
|
|
|
if (isMeaningfulChange(pkgname, relpath)) {
|
|
changedPackages.add(pkgname)
|
|
}
|
|
}
|
|
|
|
return Array.from(changedPackages)
|
|
}
|
|
|
|
module.exports = { findChangedPackagesSince, getLatestTag }
|
|
|
|
if (require.main === module && process.env.CI && process.env.GITHUB_OUTPUT) {
|
|
const kind = process.argv[2]
|
|
const input = process.argv[3]
|
|
|
|
if (!input) {
|
|
// for simpler flow, one can pass all or package list as the first argument,
|
|
// and they will be returned as is, so that we can later simply
|
|
// use the outputs of this script
|
|
console.log('Usage: find-updated-packages.js <packages>')
|
|
process.exit(1)
|
|
}
|
|
|
|
if (kind === 'major' && input !== 'all') {
|
|
throw new Error('For major releases, all packages must be published')
|
|
}
|
|
|
|
console.log('[i] Determining packages to publish...')
|
|
|
|
let res
|
|
|
|
if (input === 'all') {
|
|
res = listPackages(true)
|
|
} else if (input === 'updated') {
|
|
const tag = getLatestTag()
|
|
console.log('[i] Latest tag is %s', tag)
|
|
|
|
res = findChangedPackagesSince(tag)
|
|
} else {
|
|
res = input.split(',')
|
|
}
|
|
|
|
console.log('[i] Will publish:', res)
|
|
fs.appendFileSync(process.env.GITHUB_OUTPUT, `modified=${res.join(',')}${require('os').EOL}`)
|
|
}
|