fix(tapbundle): Add qenv package to dependencies for environment management
This commit is contained in:
@ -5,6 +5,10 @@ class TapNodeTools {
|
||||
|
||||
constructor() {}
|
||||
|
||||
public async getQenv(): Promise<plugins.qenv.Qenv> {
|
||||
return new plugins.qenv.Qenv('./', '.nogit/');
|
||||
}
|
||||
|
||||
public async runCommand(commandArg: string): Promise<any> {
|
||||
if (!this.smartshellInstance) {
|
||||
this.smartshellInstance = new plugins.smartshell.Smartshell({
|
||||
|
@ -5,7 +5,8 @@ import * as fs from 'fs';
|
||||
export { crypto,fs };
|
||||
|
||||
// @push.rocks scope
|
||||
import * as qenv from '@push.rocks/qenv';
|
||||
import * as smartcrypto from '@push.rocks/smartcrypto';
|
||||
import * as smartshell from '@push.rocks/smartshell';
|
||||
|
||||
export { smartcrypto, smartshell };
|
||||
export { qenv, smartcrypto, smartshell };
|
||||
|
Reference in New Issue
Block a user