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
While building an app using pixi.js using next, storybook and webpack, I encountered the helpful error err Error: Default condition should be last one emitted as part of the webpack compilation process with no references to files.
Investigating, it was suggested on some github issues it was to do with the order of items in package.json:
I managed to find out that @pixi/color was the culprit, so just followed a hunch and searched every plugin it loadeds source and found colord. Changing the order of the values in the package.json sorted the issue.
Is this something that can be fixed here? I have no idea of whether this is going to cause other issues, but thought I would ask.
The text was updated successfully, but these errors were encountered:
While building an app using pixi.js using next, storybook and webpack, I encountered the helpful error
err Error: Default condition should be last one
emitted as part of the webpack compilation process with no references to files.Investigating, it was suggested on some github issues it was to do with the order of items in package.json:
Instead of the suggested order:
I managed to find out that @pixi/color was the culprit, so just followed a hunch and searched every plugin it loadeds source and found
colord
. Changing the order of the values in the package.json sorted the issue.Is this something that can be fixed here? I have no idea of whether this is going to cause other issues, but thought I would ask.
The text was updated successfully, but these errors were encountered: