Skip to content

Commit b0f73ea

Browse files
authored
fix: de-confuse Nuxt build tooling by not using 'export *' in comments (#5227)
1 parent c9b5bb0 commit b0f73ea

File tree

10 files changed

+11
-9
lines changed

10 files changed

+11
-9
lines changed

experimental/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ All notable changes to experimental packages in this project will be documented
3030

3131
### :bug: (Bug Fix)
3232

33+
* fix(otlp-exporter-\*): de-confuse Nuxt build tooling by not using 'export *' in comments [#5227](https://github.com/open-telemetry/opentelemetry-js/pull/5227) @pichlermarc
34+
3335
### :books: (Refine Doc)
3436

3537
### :house: (Internal)

experimental/packages/exporter-logs-otlp-grpc/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './OTLPLogExporter';

experimental/packages/exporter-trace-otlp-grpc/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './OTLPTraceExporter';

experimental/packages/exporter-trace-otlp-http/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './platform';

experimental/packages/exporter-trace-otlp-http/src/platform/browser/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './OTLPTraceExporter';

experimental/packages/exporter-trace-otlp-http/src/platform/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './node';

experimental/packages/exporter-trace-otlp-http/src/platform/node/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './OTLPTraceExporter';

experimental/packages/opentelemetry-exporter-metrics-otlp-grpc/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './OTLPMetricExporter';

experimental/packages/opentelemetry-exporter-metrics-otlp-proto/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * from './OTLPMetricExporter';

experimental/packages/opentelemetry-sdk-node/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
18-
* TODO: Replace export * with named exports before next major version
18+
* TODO: Replace wildcard export with named exports before next major version
1919
*/
2020
export * as api from '@opentelemetry/api';
2121
export * as contextBase from '@opentelemetry/api';

0 commit comments

Comments
 (0)