1
0
mirror of https://github.com/lensapp/lens.git synced 2024-08-16 04:40:24 +03:00

chore: resolve comments

Signed-off-by: Gabriel <gaccettola@mirantis.com>
This commit is contained in:
Gabriel 2023-06-01 22:36:49 +02:00 committed by Gabriel Accettola
parent 2547b19245
commit 323b3759fc
4 changed files with 7 additions and 9 deletions

View File

@ -15,7 +15,6 @@ import { loggerFeature } from "@k8slens/logger";
import { randomFeature } from "@k8slens/random";
import { kubeApiSpecificsFeature } from "@k8slens/kube-api-specifics";
import { prometheusFeature } from "@k8slens/prometheus";
import { notificationsFeature } from "@k8slens/notifications";
const environment = "main";
@ -37,7 +36,6 @@ runInAction(() => {
messagingFeatureForMain,
randomFeature,
kubeApiSpecificsFeature,
notificationsFeature,
);
try {

10
package-lock.json generated
View File

@ -3831,14 +3831,14 @@
"resolved": "packages/node-fetch",
"link": true
},
"node_modules/@k8slens/prometheus": {
"resolved": "packages/technical-features/prometheus",
"link": true
},
"node_modules/@k8slens/notifications": {
"resolved": "packages/ui-components/notifications",
"link": true
},
"node_modules/@k8slens/prometheus": {
"resolved": "packages/technical-features/prometheus",
"link": true
},
"node_modules/@k8slens/random": {
"resolved": "packages/random-id",
"link": true
@ -34344,8 +34344,8 @@
"@k8slens/messaging-for-renderer": "^1.0.0-alpha.1",
"@k8slens/metrics": "^6.5.0-alpha.7",
"@k8slens/node-fetch": "^6.5.0-alpha.3",
"@k8slens/prometheus": "^1.0.0",
"@k8slens/notifications": "^1.0.0",
"@k8slens/prometheus": "^1.0.0",
"@k8slens/random": "^1.0.0",
"@k8slens/react-application": "^1.0.0-alpha.5",
"@k8slens/resizing-anchor": "^1.0.0-alpha.5",

View File

@ -75,7 +75,7 @@ export * from "../../renderer/components/line-progress";
export * from "../../renderer/components/menu";
export {
type NotificationStatus,
NotificationStatus,
type CreateNotificationOptions,
type Notification,
type NotificationId,

View File

@ -6,11 +6,11 @@
export type {
NotificationId,
NotificationMessage,
NotificationStatus,
CreateNotificationOptions,
Notification,
NotificationsStore,
} from "./src/notifications.store";
export { NotificationStatus } from "./src/notifications.store";
export type { ShowNotification } from "./src/notifications";
export { Notifications } from "./src/notifications";
export { notificationsClusterFrameChildComponentInjectable } from "./src/notifications-cluster-frame-child-component.injectable";