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
Buble is not compatible with acorn^7.0.0, as is correctly declared in the package.json. Normally this would be the end of it, but because acorn-jsx is compatible with acorn^6.0.0 || ^7.0.0, this causes Buble to fail if acorn^7.0.0 exists anywhere where acorn-jsx can grab it as then acorn-jsx is using 7 and Buble wants to use 6.
In other words, Buble claims to be compatible with acorn-jsx^5.0.1 but is actually not and should instead say acorn-jsx^4.1.1, which is the most recent version of acorn-jsx that does not claim compatibility with acorn^7.0.0.
The text was updated successfully, but these errors were encountered:
Buble is not compatible with
acorn^7.0.0
, as is correctly declared in the package.json. Normally this would be the end of it, but becauseacorn-jsx
is compatible withacorn^6.0.0 || ^7.0.0
, this causes Buble to fail ifacorn^7.0.0
exists anywhere whereacorn-jsx
can grab it as thenacorn-jsx
is using 7 and Buble wants to use 6.In other words, Buble claims to be compatible with
acorn-jsx^5.0.1
but is actually not and should instead sayacorn-jsx^4.1.1
, which is the most recent version ofacorn-jsx
that does not claim compatibility withacorn^7.0.0
.The text was updated successfully, but these errors were encountered: