Skip to content

Commit

Permalink
fix: de-confuse build tooling by not using 'export *' in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc committed Dec 2, 2024
1 parent c9b5bb0 commit 3d59150
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion experimental/packages/exporter-logs-otlp-grpc/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './OTLPLogExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './OTLPTraceExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './platform';
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './OTLPTraceExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './node';
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './OTLPTraceExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './OTLPMetricExporter';
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
*/

/* eslint no-restricted-syntax: ["warn", "ExportAllDeclaration"] --
* TODO: Replace export * with named exports before next major version
* TODO: Replace wildcard export with named exports before next major version
*/
export * from './OTLPMetricExporter';
2 changes: 1 addition & 1 deletion experimental/packages/opentelemetry-sdk-node/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

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

0 comments on commit 3d59150

Please sign in to comment.