Skip to content

Commit

Permalink
chore: move backwards compatibility to experimental (#2508)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyladan committed Sep 29, 2021
1 parent 7287dcb commit b66c650
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 26 deletions.
File renamed without changes.
File renamed without changes.
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.es5.json",
"extends": "../../../tsconfig.es5.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build"
Expand All @@ -9,7 +9,7 @@
],
"references": [
{
"path": "../../packages/opentelemetry-sdk-trace-base"
"path": "../../packages/opentelemetry-sdk-node"
}
]
}
File renamed without changes.
File renamed without changes.
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.es5.json",
"extends": "../../../tsconfig.es5.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build"
Expand All @@ -9,7 +9,7 @@
],
"references": [
{
"path": "../../packages/opentelemetry-sdk-trace-base"
"path": "../../packages/opentelemetry-sdk-node"
}
]
}
File renamed without changes.
File renamed without changes.
@@ -1,5 +1,5 @@
{
"extends": "../../tsconfig.es5.json",
"extends": "../../../tsconfig.es5.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "build"
Expand All @@ -9,7 +9,7 @@
],
"references": [
{
"path": "../../packages/opentelemetry-sdk-trace-base"
"path": "../../packages/opentelemetry-sdk-node"
}
]
}
3 changes: 2 additions & 1 deletion experimental/lerna.json
Expand Up @@ -3,6 +3,7 @@
"version": "0.25.0",
"npmClient": "npm",
"packages": [
"packages/*"
"packages/*",
"backwards-compatability/*"
]
}
9 changes: 9 additions & 0 deletions experimental/tsconfig.esm.json
Expand Up @@ -37,6 +37,15 @@
},
{
"path": "packages/opentelemetry-sdk-node"
},
{
"path": "backwards-compatability/node10"
},
{
"path": "backwards-compatability/node12"
},
{
"path": "backwards-compatability/node8"
}
]
}
9 changes: 9 additions & 0 deletions experimental/tsconfig.json
Expand Up @@ -37,6 +37,15 @@
},
{
"path": "packages/opentelemetry-sdk-node"
},
{
"path": "backwards-compatability/node10"
},
{
"path": "backwards-compatability/node12"
},
{
"path": "backwards-compatability/node8"
}
]
}
1 change: 0 additions & 1 deletion lerna.json
Expand Up @@ -4,7 +4,6 @@
"npmClient": "npm",
"packages": [
"benchmark/*",
"backwards-compatability/*",
"packages/*",
"integration-tests/*"
]
Expand Down
9 changes: 0 additions & 9 deletions tsconfig.esm.json
Expand Up @@ -2,15 +2,6 @@
"extends": "./tsconfig.base.esm.json",
"files": [],
"references": [
{
"path": "backwards-compatability/node10"
},
{
"path": "backwards-compatability/node12"
},
{
"path": "backwards-compatability/node8"
},
{
"path": "packages/opentelemetry-context-async-hooks"
},
Expand Down
9 changes: 0 additions & 9 deletions tsconfig.json
Expand Up @@ -41,15 +41,6 @@
"excludePrivate": true
},
"references": [
{
"path": "backwards-compatability/node10"
},
{
"path": "backwards-compatability/node12"
},
{
"path": "backwards-compatability/node8"
},
{
"path": "packages/opentelemetry-context-async-hooks"
},
Expand Down

0 comments on commit b66c650

Please sign in to comment.