We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d3d30f commit e6e9078Copy full SHA for e6e9078
1 file changed
lib/commands/ls.js
@@ -110,11 +110,9 @@ export default class extends Command {
110
if ( options.dirty && !isDirty ) continue;
111
112
table.add( {
113
- "name": ( pkg.isReleaseEnabled
114
- ? ansi.ok( "R" )
115
- : ansi.error( "R" ) ) + ( pkg.isPrivate
116
- ? ansi.error( "P" )
117
- : ansi.ok( "P" ) ) + " " + this.#prepareName( pkg ),
+ "name": ( pkg.isPrivate
+ ? "🔒"
+ : " " ) + " " + this.#prepareName( pkg ),
118
"branch": status.head.branch
119
? ( status.head.branch === "main"
120
? status.head.branch
0 commit comments