fix(tapbundle): Add qenv package to dependencies for environment management

This commit is contained in:
2024-09-19 08:38:38 +02:00
parent 953957cae3
commit a61d87a9a0
6 changed files with 36 additions and 2 deletions

View File

@ -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({

View File

@ -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 };