File tree 2 files changed +7
-9
lines changed
2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -301,6 +301,8 @@ class Npm {
301
301
302
302
output . flush ( {
303
303
[ META ] : true ,
304
+ // json can be set during a command so we send the
305
+ // final value of it to the display layer here
304
306
json : this . config . get ( 'json' ) ,
305
307
jsonError : jsonError ( err , this ) ,
306
308
} )
Original file line number Diff line number Diff line change @@ -172,8 +172,7 @@ class Display {
172
172
#command
173
173
#levelIndex
174
174
#timing
175
- #jsonConfig
176
- #jsonOutput
175
+ #json
177
176
#heading
178
177
#silent
179
178
@@ -209,11 +208,6 @@ class Display {
209
208
}
210
209
}
211
210
212
- // We are in json mode if set from the config or if jsonOutput is set via a handler
213
- get #json ( ) {
214
- return this . #jsonConfig || this . #jsonOutput
215
- }
216
-
217
211
async load ( {
218
212
command,
219
213
heading,
@@ -245,7 +239,7 @@ class Display {
245
239
this . #command = command
246
240
this . #levelIndex = LEVEL_OPTIONS [ loglevel ] . index
247
241
this . #timing = timing
248
- this . #jsonConfig = json
242
+ this . #json = json
249
243
this . #heading = heading
250
244
this . #silent = this . #levelIndex <= 0
251
245
@@ -296,7 +290,9 @@ class Display {
296
290
// Arrow function assigned to a private class field so it can be passed
297
291
// directly as a listener and still reference "this"
298
292
#outputHandler = withMeta ( ( level , meta , ...args ) => {
299
- this . #jsonOutput = meta . json
293
+ if ( typeof meta . json === 'boolean' ) {
294
+ this . #json = meta . json
295
+ }
300
296
switch ( level ) {
301
297
case output . KEYS . flush : {
302
298
this . #outputState. buffering = false
You can’t perform that action at this time.
0 commit comments