1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

merge fixes

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2020-10-25 10:28:43 +02:00
parent d2e0c40ea0
commit 571694bb8e
4 changed files with 9 additions and 2 deletions

View File

@ -0,0 +1,5 @@
install-deps:
npm install
build: install-deps
npm run build

View File

@ -23,7 +23,7 @@
} }
}, },
"include": [ "include": [
"renderer.ts", "renderer.tsx",
"../../src/extensions/npm/**/*.d.ts", "../../src/extensions/npm/**/*.d.ts",
"src/**/*" "src/**/*"
] ]

View File

@ -10,11 +10,13 @@ import * as Store from "./stores"
import * as Util from "./utils" import * as Util from "./utils"
import * as Registry from "../registries" import * as Registry from "../registries"
import * as CommonVars from "../../common/vars"; import * as CommonVars from "../../common/vars";
import * as ClusterFeature from "./cluster-feature"
export let windowManager: WindowManager; export let windowManager: WindowManager;
export { export {
EventBus, EventBus,
ClusterFeature,
Store, Store,
Util, Util,
Registry, Registry,

View File

@ -1,2 +1,2 @@
export { ExtensionStore } from "../extension-store" export { ExtensionStore } from "../extension-store"
export { Cluster } from "../../main/cluster" export type { Cluster } from "../../main/cluster"