@pnpm/default-reporter
Advanced tools
Comparing version 7.6.2 to 7.6.3
# @pnpm/default-reporter | ||
## 7.6.3 | ||
### Patch Changes | ||
- 13c332e69: Fixes a regression published in pnpm v5.5.3 as a result of nullish coalescing refactoring. | ||
## 7.6.2 | ||
@@ -4,0 +10,0 @@ |
@@ -20,3 +20,3 @@ "use strict"; | ||
function default_1(log$, opts) { | ||
var _a, _b, _c, _d, _e; | ||
var _a, _b, _c, _d; | ||
const width = (_b = (_a = opts.width) !== null && _a !== void 0 ? _a : process.stdout.columns) !== null && _b !== void 0 ? _b : 80; | ||
@@ -30,3 +30,3 @@ const cwd = (_d = (_c = opts.pnpmConfig) === null || _c === void 0 ? void 0 : _c.dir) !== null && _d !== void 0 ? _d : process.cwd(); | ||
reportLifecycleScripts_1.default(log$, { | ||
appendOnly: (_e = opts.appendOnly) !== null && _e !== void 0 ? _e : opts.streamLifecycleOutput, | ||
appendOnly: opts.appendOnly === true || opts.streamLifecycleOutput, | ||
cwd, | ||
@@ -33,0 +33,0 @@ width, |
{ | ||
"name": "@pnpm/default-reporter", | ||
"version": "7.6.2", | ||
"version": "7.6.3", | ||
"description": "The default reporter of pnpm", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
81465