mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
fix: correct command in Makefile for compiling extension-types, typo fix
Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
parent
1f41cc800b
commit
fe072bb9b4
2
Makefile
2
Makefile
@ -59,7 +59,7 @@ build-extensions:
|
|||||||
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), $(MAKE) -C $(dir) build;)
|
$(foreach dir, $(wildcard $(EXTENSIONS_DIR)/*), $(MAKE) -C $(dir) build;)
|
||||||
|
|
||||||
build-npm:
|
build-npm:
|
||||||
yarn compile:extension-rollup
|
yarn compile:extension-types
|
||||||
yarn npm:fix-package-version
|
yarn npm:fix-package-version
|
||||||
|
|
||||||
publish-npm: build-npm
|
publish-npm: build-npm
|
||||||
|
|||||||
@ -80,8 +80,8 @@ export class ExtensionManager {
|
|||||||
|
|
||||||
async loadExtensions() {
|
async loadExtensions() {
|
||||||
const bundledExtensions = await this.loadBundledExtensions()
|
const bundledExtensions = await this.loadBundledExtensions()
|
||||||
const localExtendions = await this.loadFromFolder(this.localFolderPath)
|
const localExtensions = await this.loadFromFolder(this.localFolderPath)
|
||||||
const extensions = bundledExtensions.concat(localExtendions)
|
const extensions = bundledExtensions.concat(localExtensions)
|
||||||
return new Map(extensions.map(ext => [ext.id, ext]));
|
return new Map(extensions.map(ext => [ext.id, ext]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user