We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa40acf commit 1e93674Copy full SHA for 1e93674
1 file changed
lib/commands/ls.js
@@ -145,7 +145,7 @@ export default class extends Command {
145
"branchName": status.head.branch
146
? status.head.branch
147
: ansi.error( status.head.abbrev ),
148
- "previousRelease": this.#formatVersion( status.previousRelease, pkg.isReleaseEnabled ) + ( status.previousRelease && status.releases?.lastRelease.eq( status.previousRelease )
+ "previousRelease": this.#formatVersion( status.previousRelease, pkg.isReleaseEnabled ) + ( pkg.isReleaseEnabled && status.previousRelease && status.releases?.lastRelease.eq( status.previousRelease )
149
? " 🚩"
150
: " " ),
151
"dirty": status.isDirty,
0 commit comments