We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a3188e commit 77f6c74Copy full SHA for 77f6c74
bin/dependencies/production/update-prod-dependencies.js
@@ -27,8 +27,8 @@ pkgPaths.forEach(obj => {
27
const pkgJson = require(obj.pkgJsonAbsPath);
28
const deps = pkgJson.dependencies || {};
29
Object.entries(deps).forEach(([dep, version]) => {
30
- // Exclude internal libraries
31
- if (dep.startsWith('@instana')) return;
+ // Exclude internal libraries and OpenTelemetry packages
+ if (dep.startsWith('@instana') || dep.startsWith('@opentelemetry')) return;
32
if (!dependencyMap[dep]) dependencyMap[dep] = [];
33
dependencyMap[dep].push({ pkgRelDir: obj.pkgRelDir, version });
34
});
0 commit comments