@easbot/utils 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +48 -46
- package/dist/index.d.cts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.mjs +46 -44
- package/package.json +3 -2
package/dist/index.d.cts
CHANGED
|
@@ -473,7 +473,12 @@ declare namespace Fn {
|
|
|
473
473
|
const fn: typeof createFn;
|
|
474
474
|
}
|
|
475
475
|
|
|
476
|
-
|
|
476
|
+
interface LoadEnvOptions {
|
|
477
|
+
globalConfigPath?: string;
|
|
478
|
+
projectRoot?: string;
|
|
479
|
+
isDevelopment?: boolean;
|
|
480
|
+
}
|
|
481
|
+
declare function loadEnv(options?: LoadEnvOptions): void;
|
|
477
482
|
|
|
478
483
|
interface GitResult {
|
|
479
484
|
exitCode: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -473,7 +473,12 @@ declare namespace Fn {
|
|
|
473
473
|
const fn: typeof createFn;
|
|
474
474
|
}
|
|
475
475
|
|
|
476
|
-
|
|
476
|
+
interface LoadEnvOptions {
|
|
477
|
+
globalConfigPath?: string;
|
|
478
|
+
projectRoot?: string;
|
|
479
|
+
isDevelopment?: boolean;
|
|
480
|
+
}
|
|
481
|
+
declare function loadEnv(options?: LoadEnvOptions): void;
|
|
477
482
|
|
|
478
483
|
interface GitResult {
|
|
479
484
|
exitCode: number;
|