Skip to main content

Hi All

 

I have seen this error across a couple of clients when we try to install any SFDX plugin:

 

sfdx plugins:install xxxxx

Gives: TypeError: Cannot read property 'dim' of undefined

 

For now, the workaround is to install it via NodeJs and create a link:

 

npm install --global xxxxx

NPM=$(npm root -g) 

echo ${NPM} 

sfdx plugins:link ${NPM}/xxxxx/

 

Is this a recent known issue?

2 comentarios
  1. 11 sept 2020, 01:11
    This appears to be corrected now with this morning's release of the CLI
0/9000