Reputation: 45
I keep getting the following error, I'm using meteor 2.1 currently
Error: A new entrypoint in the @emotion/styled
package, @emotion/styled/base
, has replaced the @emotion/styled-base
package. Please remove this package and use @emotion/styled/base
instead.
i cannot find ANY way to install this @emotion/styled/base package. @emotion/styled-base is installed and i cannot create a build suddenly.
any suggestions???
I'm using react.js
Upvotes: 1
Views: 1560
Reputation: 3158
@emotion/styled/base
isn't a package you need to install, but rather its a submodule of the @emotion/styled
package.
I have a hunch that you are not using @emotion/styled-base
directly, so most likely what you have is a version mismatch where you have a newer version of @emotion/styled
installed, but that package is written for an older version. You'll probably just need to locate this offending package and update it.
If this isn't the case, then you'll just need to replace your imports for @emotion/styled-base
with ones for @emotion/styled/base
Upvotes: 2