fix(qenv): replace smartfile-based config loading with native fs and yaml parsing for env files

This commit is contained in:
2026-05-01 15:54:39 +00:00
parent c0d33340c3
commit 5e31dc93a3
13 changed files with 3777 additions and 3804 deletions
+8 -3
View File
@@ -1,7 +1,8 @@
// native
import * as fs from 'node:fs';
import * as path from 'path';
export { path };
export { fs, path };
// @api.global scope
import * as typedrequest from '@api.global/typedrequest';
@@ -11,12 +12,16 @@ export {
}
// @pushrocks scope
import * as smartfile from '@push.rocks/smartfile';
import * as smartlog from '@push.rocks/smartlog';
export { smartfile, smartlog };
export { smartlog };
// @configvault.io scope
import * as configvaultInterfaces from '@configvault.io/interfaces';
export { configvaultInterfaces };
// third party scope
import * as yaml from 'yaml';
export { yaml };