You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use this package in an internal package I wrote for my org. While executing the pipeline, I ran into an error stating that _stringWidth is not a function in file node_modules/cli-progress/lib/formatter.js at line 57:
I use this package in an internal package I wrote for my org. While executing the pipeline, I ran into an error stating that
_stringWidth is not a function
in filenode_modules/cli-progress/lib/formatter.js
at line 57:Upon looking into this file, I noticed that the following import isn't destructured/doesn't key-into the default object
possible workarounds:
(1)
(2)
Instead, I only changed line 57 as follows:
Which resolved the error.
Type note:
The required
_stringWidth
const has an alias ofContents of output patch file from running
yarn patch-package cli-progress
using thepatch-package
npm packageThe text was updated successfully, but these errors were encountered: