We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95a028b commit 39c7e58Copy full SHA for 39c7e58
packages/mambajs-core/src/helper.ts
@@ -30,6 +30,8 @@ export interface IEmpackEnvMetaPkg {
30
filename_stem: string;
31
filename: string;
32
url: string;
33
+ depends: [],
34
+ subdir: string
35
}
36
37
export interface IEmpackEnvMeta {
packages/mambajs-core/src/parser.ts
@@ -5,7 +5,7 @@ export interface IParsedCommand {
5
data: IInstallationCommandOptions | IUninstallationCommandOptions | null;
6
7
8
-type CommandsName = 'install' | 'list' | 'remove' | 'uninstall';
+export type CommandsName = 'install' | 'list' | 'remove' | 'uninstall';
9
10
export interface ICommandData {
11
commands: IParsedCommand[];
0 commit comments