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
Due to incompatibilities between the package lock file format generated by npm v7, any CI jobs running for nodejs version that are including npm v6 as the pre-installed npm version where failing as soon as renovatebot did upgrade the lockfile to lockfileVersion 2.
As a short term workaround, we added an upper bound on the npm engine in the wbe-ext package.json file (see ##2145).
With the npm upper bound set, installing web-ext using npm v7 will print an EBADENGINE warning:
It doesn't prevent web-ext from being installed successfully, but it may be confusing for the users (e.g. because it may give the impression that web-ext isn't compatible with npm v7, which is not really the case, the package-lock.json does not matter while installing the package released on npm and it is not even included in the assets released on npm).
We should workaround the CI job issue as part of the circleci config and remove the upper bound from the npm engine configured in the web-ext package.json.
The text was updated successfully, but these errors were encountered:
Due to incompatibilities between the package lock file format generated by npm v7, any CI jobs running for nodejs version that are including npm v6 as the pre-installed npm version where failing as soon as renovatebot did upgrade the lockfile to lockfileVersion 2.
As a short term workaround, we added an upper bound on the npm engine in the wbe-ext package.json file (see ##2145).
With the npm upper bound set, installing web-ext using npm v7 will print an
EBADENGINE
warning:It doesn't prevent web-ext from being installed successfully, but it may be confusing for the users (e.g. because it may give the impression that web-ext isn't compatible with npm v7, which is not really the case, the package-lock.json does not matter while installing the package released on npm and it is not even included in the assets released on npm).
We should workaround the CI job issue as part of the circleci config and remove the upper bound from the npm engine configured in the web-ext package.json.
The text was updated successfully, but these errors were encountered: