0

When installing buefy and font-awesome it labels as extraneous and the folder is displayed with arrow with nothing in it. How to resolve this one.

like this

     +-- buefy@0.4.5  extraneous
     -- font-awesome@4.7.0  extraneous
The Keeper
  • 429
  • 7
  • 16

1 Answers1

0

This simply means that these modules are installed globally but do not appear in your package.json. Make sure to install locally.

To fix this, run npm install -g {module} --save to save it locally or manually include it in package.json 'dependencies' section.

Tudor B.
  • 303
  • 2
  • 7