mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Add missing feature dependencies
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
parent
08f427e476
commit
94cdf84712
@ -1,5 +1,6 @@
|
||||
import { autoRegister } from "@ogre-tools/injectable-extension-for-auto-registration";
|
||||
import { getFeature } from "@k8slens/feature-core";
|
||||
import { messagingFeature } from "@k8slens/messaging";
|
||||
|
||||
export const messagingFeatureForMain = getFeature({
|
||||
id: "messaging-for-main",
|
||||
@ -12,4 +13,6 @@ export const messagingFeatureForMain = getFeature({
|
||||
getRequireContexts: () => [require.context("./", true, /\.injectable\.(ts|tsx)$/)],
|
||||
});
|
||||
},
|
||||
|
||||
dependencies: [messagingFeature],
|
||||
});
|
||||
|
||||
@ -1,5 +1,6 @@
|
||||
import { autoRegister } from "@ogre-tools/injectable-extension-for-auto-registration";
|
||||
import { getFeature } from "@k8slens/feature-core";
|
||||
import { messagingFeature } from "@k8slens/messaging";
|
||||
|
||||
export const messagingFeatureForRenderer = getFeature({
|
||||
id: "messaging-for-renderer",
|
||||
@ -12,4 +13,6 @@ export const messagingFeatureForRenderer = getFeature({
|
||||
getRequireContexts: () => [require.context("./", true, /\.injectable\.(ts|tsx)$/)],
|
||||
});
|
||||
},
|
||||
|
||||
dependencies: [messagingFeature],
|
||||
});
|
||||
|
||||
Loading…
Reference in New Issue
Block a user