@@ -419,6 +419,7 @@ const loadRegistryPackageJson = (pkg: PkgMeta) => {
419
419
420
420
const bumpChoices = ( oldVersion : string ) => {
421
421
const releaseTypes : semver . ReleaseType [ ] = allReleaseTypes . filter ( r => r !== 'prerelease' )
422
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
422
423
semver . prerelease ( oldVersion ) ? releaseTypes . unshift ( 'prerelease' ) : releaseTypes . push ( 'prerelease' )
423
424
424
425
return [
@@ -452,32 +453,34 @@ async function getPackageLastPublishRef(pkg: Pkg) {
452
453
* Requires a `pkg`, and an `expectVersion` function
453
454
*/
454
455
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 )
461
463
. flatMap ( other => {
462
- const prefix = [ '' , '^' , '~' ] . find ( p => version === p + other . version )
464
+ const prefix = [ '' , '^' , '~' ] . find ( p => depVersion === p + other . version )
463
465
return prefix ? [ { pkg : other , prefix} ] : [ ]
464
466
} )
465
467
. find ( Boolean )
466
468
467
- if ( ! found ) {
469
+ if ( ! foundDep ) {
468
470
continue
469
471
}
470
472
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
474
477
if ( ! expected ) {
475
478
// 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
477
480
}
478
481
if ( ! expected ) {
479
482
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.` ,
481
484
)
482
485
}
483
486
@@ -488,18 +491,19 @@ async function getBumpedDependencies(ctx: Ctx, params: {pkg: Pkg}) {
488
491
// continue
489
492
// }
490
493
491
- const prefix = found . prefix || registryPackageDependencyVersion ?. match ( / ^ [ ^ ~ ] / ) ?. [ 0 ] || ''
494
+ const prefix = foundDep . prefix || registryPackageDependencyVersion ?. match ( / ^ [ ^ ~ ] / ) ?. [ 0 ] || ''
492
495
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 ] } `
495
499
}
496
500
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 }
500
504
}
501
505
502
- return { updated, dependencies : newDependencies }
506
+ return { updated : updates , dependencies : localPackageDependencies }
503
507
}
504
508
505
509
async function getPackageRevList ( pkg : Pkg ) {
@@ -519,7 +523,7 @@ async function getPackageRevList(pkg: Pkg) {
519
523
. filter ( Boolean )
520
524
. map ( line => `- ${ line } ` )
521
525
const sections = [
522
- commitBullets . length > 0 && '<h3>Commits</h3>\n' ,
526
+ commitBullets . length > 0 && '<h3 data-commits >Commits</h3>\n' ,
523
527
...commitBullets ,
524
528
uncommitedChanges . trim ( ) && 'Uncommitted changes:\n' + uncommitedChanges ,
525
529
]
@@ -559,10 +563,11 @@ async function getOrCreateChangelog(ctx: Ctx, pkg: Pkg): Promise<string> {
559
563
const dep = depPkg . name
560
564
if ( bumpedDeps . updated [ dep ] ) {
561
565
const depChanges = await getOrCreateChangelog ( ctx , depPkg )
566
+ const verb = depChanges ?. includes ( 'data-commits' ) ? 'changed' : 'bumped'
562
567
const newMessage = [
563
568
'<!-- data-change-type="dependencies" -->' ,
564
569
`<details>` ,
565
- `<summary>Dependency ${ depPkg . name } changed (${ bumpedDeps . updated [ dep ] } )</summary>` ,
570
+ `<summary>Dependency ${ depPkg . name } ${ verb } (${ bumpedDeps . updated [ dep ] } )</summary>` ,
566
571
'' ,
567
572
'<blockquote>' ,
568
573
depChanges
@@ -670,7 +675,7 @@ type PackageJson = import('type-fest').PackageJson & {
670
675
* not an official package.json field, but there is a library that does something similar to this: https://github.com/Metnew/git-hash-package
671
676
* having git.sha point to a commit hash seems pretty useful to me, even if it's not standard.
672
677
* 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.
674
679
*/
675
680
git ?: { sha ?: string }
676
681
}
0 commit comments