Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 868 Bytes

known_issues.md

File metadata and controls

26 lines (16 loc) · 868 Bytes

Known Issues

NPM 404 Error

This package is published as a NPM scoped package. So, if you get a 404 error while doing npm install, that seems like you are using a different NPM registry (or a NPM proxy).

Try to use the default registry.

See more: storybookjs#15

Potential issues with NPM 2

If you are using NPM 2, you may got some weird issues. Try to use NPM 3. Here's how to do it:

npm i -g npm@3.8.5
rm -rf node_modules
npm i

Issues with Babel 5

If you are using Babel 5 inside your project, you will get some errors on parsing modules. Try to migrate your project to Babel 6.

See more: storybookjs#16