Skip to content

Commit e85c896

Browse files
committed
npmono: improve bump checks and naming and messages
1 parent ed488b6 commit e85c896

File tree

1 file changed

+28
-23
lines changed

1 file changed

+28
-23
lines changed

tools/npmono/src/publish.ts

+28-23
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ const loadRegistryPackageJson = (pkg: PkgMeta) => {
419419

420420
const bumpChoices = (oldVersion: string) => {
421421
const releaseTypes: semver.ReleaseType[] = allReleaseTypes.filter(r => r !== 'prerelease')
422+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
422423
semver.prerelease(oldVersion) ? releaseTypes.unshift('prerelease') : releaseTypes.push('prerelease')
423424

424425
return [
@@ -452,32 +453,34 @@ async function getPackageLastPublishRef(pkg: Pkg) {
452453
* Requires a `pkg`, and an `expectVersion` function
453454
*/
454455
async function getBumpedDependencies(ctx: Ctx, params: {pkg: Pkg}) {
455-
const packageJson = loadLocalPackageJson(params.pkg)
456-
const newDependencies = {...packageJson.dependencies}
457-
const updated: Record<string, string> = {}
458-
for (const [name, version] of Object.entries(packageJson.dependencies || {})) {
459-
const found = ctx.packages
460-
.filter(other => other.name === name)
456+
const localPackageJson = loadLocalPackageJson(params.pkg)
457+
const registryPackageJson = loadRegistryPackageJson(params.pkg)
458+
const localPackageDependencies = {...localPackageJson.dependencies}
459+
const updates: Record<string, string> = {}
460+
for (const [depName, depVersion] of Object.entries(localPackageJson.dependencies || {})) {
461+
const foundDep = ctx.packages
462+
.filter(other => other.name === depName)
461463
.flatMap(other => {
462-
const prefix = ['', '^', '~'].find(p => version === p + other.version)
464+
const prefix = ['', '^', '~'].find(p => depVersion === p + other.version)
463465
return prefix ? [{pkg: other, prefix}] : []
464466
})
465467
.find(Boolean)
466468

467-
if (!found) {
469+
if (!foundDep) {
468470
continue
469471
}
470472

471-
const registryPackageJson = loadRegistryPackageJson(found.pkg)
472-
const registryPackageDependencyVersion = registryPackageJson?.dependencies?.[name]
473-
let expected = found.pkg.targetVersion
473+
const registryPackageDependencyVersion = registryPackageJson?.dependencies?.[depName]
474+
475+
const dependencyPackageJsonOnRegistry = loadRegistryPackageJson(foundDep.pkg)
476+
let expected = foundDep.pkg.targetVersion
474477
if (!expected) {
475478
// ok, looks like we're not publishing the dependency. That's fine, as long as there's an existing published version.
476-
expected = registryPackageJson?.version || null
479+
expected = dependencyPackageJsonOnRegistry?.version || null
477480
}
478481
if (!expected) {
479482
throw new Error(
480-
`Package ${params.pkg.name} depends on ${found.pkg.name} but ${found.pkg.name} is not published, and no target version was set for publishing now. Did you opt to skip publishing ${found.pkg.name}? If so, please re-run and make sure to publish ${found.pkg.name}. You can't publish ${params.pkg.name} until you do that.`,
483+
`Package ${params.pkg.name} depends on ${foundDep.pkg.name} but ${foundDep.pkg.name} is not published, and no target version was set for publishing now. Did you opt to skip publishing ${foundDep.pkg.name}? If so, please re-run and make sure to publish ${foundDep.pkg.name}. You can't publish ${params.pkg.name} until you do that.`,
481484
)
482485
}
483486

@@ -488,18 +491,19 @@ async function getBumpedDependencies(ctx: Ctx, params: {pkg: Pkg}) {
488491
// continue
489492
// }
490493

491-
const prefix = found.prefix || registryPackageDependencyVersion?.match(/^[^~]/)?.[0] || ''
494+
const prefix = foundDep.prefix || registryPackageDependencyVersion?.match(/^[^~]/)?.[0] || ''
492495

493-
newDependencies[name] = prefix + expected
494-
updated[name] = `${registryPackageDependencyVersion} -> ${newDependencies[name]}`
496+
localPackageDependencies[depName] = prefix + expected
497+
updates[depName] =
498+
`${registryPackageDependencyVersion || JSON.stringify({params, name: depName, depName: depName, registryPackageJson: dependencyPackageJsonOnRegistry}, null, 2)} -> ${localPackageDependencies[depName]}`
495499
}
496500

497-
if (Object.keys(updated).length === 0) {
498-
// keep reference equality, avoid `undefined` -> `{}`
499-
return {updated, dependencies: packageJson.dependencies}
501+
if (Object.keys(updates).length === 0) {
502+
// keep reference equality, avoid `undefined` to `{}`
503+
return {updated: updates, dependencies: localPackageJson.dependencies}
500504
}
501505

502-
return {updated, dependencies: newDependencies}
506+
return {updated: updates, dependencies: localPackageDependencies}
503507
}
504508

505509
async function getPackageRevList(pkg: Pkg) {
@@ -519,7 +523,7 @@ async function getPackageRevList(pkg: Pkg) {
519523
.filter(Boolean)
520524
.map(line => `- ${line}`)
521525
const sections = [
522-
commitBullets.length > 0 && '<h3>Commits</h3>\n',
526+
commitBullets.length > 0 && '<h3 data-commits>Commits</h3>\n',
523527
...commitBullets,
524528
uncommitedChanges.trim() && 'Uncommitted changes:\n' + uncommitedChanges,
525529
]
@@ -559,10 +563,11 @@ async function getOrCreateChangelog(ctx: Ctx, pkg: Pkg): Promise<string> {
559563
const dep = depPkg.name
560564
if (bumpedDeps.updated[dep]) {
561565
const depChanges = await getOrCreateChangelog(ctx, depPkg)
566+
const verb = depChanges?.includes('data-commits') ? 'changed' : 'bumped'
562567
const newMessage = [
563568
'<!-- data-change-type="dependencies" -->',
564569
`<details>`,
565-
`<summary>Dependency ${depPkg.name} changed (${bumpedDeps.updated[dep]})</summary>`,
570+
`<summary>Dependency ${depPkg.name} ${verb} (${bumpedDeps.updated[dep]})</summary>`,
566571
'',
567572
'<blockquote>',
568573
depChanges
@@ -670,7 +675,7 @@ type PackageJson = import('type-fest').PackageJson & {
670675
* not an official package.json field, but there is a library that does something similar to this: https://github.com/Metnew/git-hash-package
671676
* having git.sha point to a commit hash seems pretty useful to me, even if it's not standard.
672677
* tagging versions in git is still a good best practice but there are many different ways, e.g. `1.2.3` vs `v1.2.3` vs `[email protected]` vs `[email protected]`
673-
* plus, that's only useful in going from git -> npm, not npm -> git.
678+
* plus, that's only useful in going from git to npm, not npm to git.
674679
*/
675680
git?: {sha?: string}
676681
}

0 commit comments

Comments
 (0)