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
I am trying to install: @opentelemetry/auto-instrumentations-web package to my project, with npm install.
What did you expect to see?
I expect I don´t receive any errors
What did you see instead?
I received a conflict with peer deps: zone.js@0.11.4
Additional context
When you try to install the metapackage: auto-instrumentation-web in an application that has a version of the zone.js library different from the one specified in the project's peer-deps, it generates a dependency conflict, even though the one you have in your project is higher than that of the metapackage.
You should consider changing the package.json (line 35) that currently has: "zone.js": "0.11.4" to "zone.js": "^0.11.4", so that it can use that version or one higher and does not generate conflicts when executing npm install
The text was updated successfully, but these errors were encountered:
I believe this is a duplicate of #1820 . This is on the radar and it looks like #1934 is prepped to update this, but we have to fix up a few things before we're able to get this in.
What version of OpenTelemetry are you using?
What version of Node are you using?
v-18.6.0
What did you do?
I am trying to install: @opentelemetry/auto-instrumentations-web package to my project, with npm install.
What did you expect to see?
I expect I don´t receive any errors
What did you see instead?
I received a conflict with peer deps: zone.js@0.11.4
Additional context
When you try to install the metapackage: auto-instrumentation-web in an application that has a version of the zone.js library different from the one specified in the project's peer-deps, it generates a dependency conflict, even though the one you have in your project is higher than that of the metapackage.
You should consider changing the package.json (line 35) that currently has: "zone.js": "0.11.4" to "zone.js": "^0.11.4", so that it can use that version or one higher and does not generate conflicts when executing npm install
The text was updated successfully, but these errors were encountered: