1
0
mirror of https://github.com/lensapp/lens.git synced 2024-09-11 09:25:26 +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 { randomFeature } from "@k8slens/random";
import { kubeApiSpecificsFeature } from "@k8slens/kube-api-specifics"; import { kubeApiSpecificsFeature } from "@k8slens/kube-api-specifics";
import { prometheusFeature } from "@k8slens/prometheus"; import { prometheusFeature } from "@k8slens/prometheus";
import { notificationsFeature } from "@k8slens/notifications";
const environment = "main"; const environment = "main";
@ -37,7 +36,6 @@ runInAction(() => {
messagingFeatureForMain, messagingFeatureForMain,
randomFeature, randomFeature,
kubeApiSpecificsFeature, kubeApiSpecificsFeature,
notificationsFeature,
); );
try { try {

10
package-lock.json generated
View File

@ -3831,14 +3831,14 @@
"resolved": "packages/node-fetch", "resolved": "packages/node-fetch",
"link": true "link": true
}, },
"node_modules/@k8slens/prometheus": {
"resolved": "packages/technical-features/prometheus",
"link": true
},
"node_modules/@k8slens/notifications": { "node_modules/@k8slens/notifications": {
"resolved": "packages/ui-components/notifications", "resolved": "packages/ui-components/notifications",
"link": true "link": true
}, },
"node_modules/@k8slens/prometheus": {
"resolved": "packages/technical-features/prometheus",
"link": true
},
"node_modules/@k8slens/random": { "node_modules/@k8slens/random": {
"resolved": "packages/random-id", "resolved": "packages/random-id",
"link": true "link": true
@ -34344,8 +34344,8 @@
"@k8slens/messaging-for-renderer": "^1.0.0-alpha.1", "@k8slens/messaging-for-renderer": "^1.0.0-alpha.1",
"@k8slens/metrics": "^6.5.0-alpha.7", "@k8slens/metrics": "^6.5.0-alpha.7",
"@k8slens/node-fetch": "^6.5.0-alpha.3", "@k8slens/node-fetch": "^6.5.0-alpha.3",
"@k8slens/prometheus": "^1.0.0",
"@k8slens/notifications": "^1.0.0", "@k8slens/notifications": "^1.0.0",
"@k8slens/prometheus": "^1.0.0",
"@k8slens/random": "^1.0.0", "@k8slens/random": "^1.0.0",
"@k8slens/react-application": "^1.0.0-alpha.5", "@k8slens/react-application": "^1.0.0-alpha.5",
"@k8slens/resizing-anchor": "^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 * from "../../renderer/components/menu";
export { export {
type NotificationStatus, NotificationStatus,
type CreateNotificationOptions, type CreateNotificationOptions,
type Notification, type Notification,
type NotificationId, type NotificationId,

View File

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