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
@emotion/styled/baseisn't a package you need to install, but rather its a submodule of the@emotion/styledpackage.I have a hunch that you are not using
@emotion/styled-basedirectly, so most likely what you have is a version mismatch where you have a newer version of@emotion/styledinstalled, 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-basewith ones for@emotion/styled/base