Skip to content

Commit 30ab3e0

Browse files
committed
chore(analytics): fix tsconfig references
1 parent f0e8107 commit 30ab3e0

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

.changeset/lovely-kiwis-tap.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
"@equinor/fusion-framework-module-analytics": patch
3+
"@equinor/fusion-framework-module-app": patch
4+
"@equinor/fusion-framework-react-app": patch
5+
"@equinor/fusion-framework-app": patch
6+
"@equinor/fusion-framework-cli": patch
7+
"portal-analytics": patch
8+
---
9+
10+
Fix tsconfig references

packages/modules/analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"@equinor/fusion-framework-module-app": "workspace:^",
4949
"@equinor/fusion-framework-module-context": "workspace:^",
5050
"@equinor/fusion-framework-module-event": "workspace:^",
51-
"@equinor/fusion-framework-react": "workspace:^",
51+
"@equinor/fusion-framework-module-http": "workspace:^",
5252
"@opentelemetry/api-logs": "^0.207.0",
5353
"@opentelemetry/exporter-logs-otlp-http": "^0.207.0",
5454
"@opentelemetry/otlp-exporter-base": "^0.207.0",

packages/modules/analytics/src/logExporters/fusionOTLPLogExporter/FusionOTLPLogExporter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
type OtlpSharedConfiguration,
99
} from '@opentelemetry/otlp-exporter-base';
1010

11-
import type { IHttpClient } from '@equinor/fusion-framework-react/http';
11+
import type { IHttpClient } from '@equinor/fusion-framework-module-http';
1212
import { HttpClientExporterTransport } from './HttpClientExporterTransport.js';
1313

1414
// The shared default configuration needed for the OTLPNetworkExportDelegate

packages/modules/analytics/src/logExporters/fusionOTLPLogExporter/HttpClientExporterTransport.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { IExporterTransport, ExportResponse } from '@opentelemetry/otlp-exporter-base';
22

3-
import type { IHttpClient } from '@equinor/fusion-framework-react/http';
3+
import type { IHttpClient } from '@equinor/fusion-framework-module-http';
44

55
function isExportRetryable(statusCode: number): boolean {
66
// Status codes of when we should consider retrying.

packages/modules/analytics/tsconfig.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@
1313
},
1414
{
1515
"path": "../event"
16+
},
17+
{
18+
"path": "../app"
19+
},
20+
{
21+
"path": "../context"
22+
},
23+
{
24+
"path": "../http"
1625
}
1726
],
1827
"include": ["src/**/*"],

pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)