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
When trying to install using yarn, the file expects this line:
import 'prismjs/components/prism-ruby';
To compile with webpack. This file is not declared as a dependency (or optional dependency). As a result, projects that do not already include prismjs — or specifically the prism-ruby component — cannot compile.
Lexxy should either:
Declare prismjs (and the required components) as a dependency or peer dependency, or
Make this import optional so it does not break builds for projects that do not use Prism.