@karmaniverous/get-dotenv 5.2.4 → 5.2.6
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/README.md +5 -5
- package/dist/cliHost.cjs +678 -271
- package/dist/cliHost.d.cts +124 -60
- package/dist/cliHost.d.mts +124 -60
- package/dist/cliHost.d.ts +124 -60
- package/dist/cliHost.mjs +679 -272
- package/dist/getdotenv.cli.mjs +647 -631
- package/dist/index.cjs +694 -678
- package/dist/index.d.cts +18 -39
- package/dist/index.d.mts +18 -39
- package/dist/index.d.ts +18 -39
- package/dist/index.mjs +695 -679
- package/dist/plugins-aws.d.cts +8 -8
- package/dist/plugins-aws.d.mts +8 -8
- package/dist/plugins-aws.d.ts +8 -8
- package/dist/plugins-batch.d.cts +8 -8
- package/dist/plugins-batch.d.mts +8 -8
- package/dist/plugins-batch.d.ts +8 -8
- package/dist/plugins-cmd.cjs +159 -1551
- package/dist/plugins-cmd.d.cts +8 -8
- package/dist/plugins-cmd.d.mts +8 -8
- package/dist/plugins-cmd.d.ts +8 -8
- package/dist/plugins-cmd.mjs +160 -1551
- package/dist/plugins-demo.d.cts +8 -8
- package/dist/plugins-demo.d.mts +8 -8
- package/dist/plugins-demo.d.ts +8 -8
- package/dist/plugins-init.d.cts +8 -8
- package/dist/plugins-init.d.mts +8 -8
- package/dist/plugins-init.d.ts +8 -8
- package/dist/plugins.cjs +156 -1547
- package/dist/plugins.d.cts +8 -8
- package/dist/plugins.d.mts +8 -8
- package/dist/plugins.d.ts +8 -8
- package/dist/plugins.mjs +158 -1548
- package/package.json +1 -1
package/dist/plugins-demo.d.cts
CHANGED
|
@@ -95,14 +95,6 @@ interface GetDotenvOptions {
|
|
|
95
95
|
useConfigLoader?: boolean;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
/** * Per-invocation context shared with plugins and actions. */
|
|
99
|
-
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
100
|
-
optionsResolved: TOptions;
|
|
101
|
-
dotenv: ProcessEnv;
|
|
102
|
-
plugins?: Record<string, unknown>;
|
|
103
|
-
pluginConfigs?: Record<string, unknown>;
|
|
104
|
-
};
|
|
105
|
-
|
|
106
98
|
/** src/cliHost/definePlugin.ts
|
|
107
99
|
* Plugin contracts for the GetDotenv CLI host.
|
|
108
100
|
*
|
|
@@ -153,6 +145,14 @@ interface GetDotenvCliPlugin {
|
|
|
153
145
|
use: (child: GetDotenvCliPlugin) => GetDotenvCliPlugin;
|
|
154
146
|
}
|
|
155
147
|
|
|
148
|
+
/** * Per-invocation context shared with plugins and actions. */
|
|
149
|
+
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
150
|
+
optionsResolved: TOptions;
|
|
151
|
+
dotenv: ProcessEnv;
|
|
152
|
+
plugins?: Record<string, unknown>;
|
|
153
|
+
pluginConfigs?: Record<string, unknown>;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
156
|
declare const demoPlugin: () => GetDotenvCliPlugin;
|
|
157
157
|
|
|
158
158
|
export { demoPlugin };
|
package/dist/plugins-demo.d.mts
CHANGED
|
@@ -95,14 +95,6 @@ interface GetDotenvOptions {
|
|
|
95
95
|
useConfigLoader?: boolean;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
/** * Per-invocation context shared with plugins and actions. */
|
|
99
|
-
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
100
|
-
optionsResolved: TOptions;
|
|
101
|
-
dotenv: ProcessEnv;
|
|
102
|
-
plugins?: Record<string, unknown>;
|
|
103
|
-
pluginConfigs?: Record<string, unknown>;
|
|
104
|
-
};
|
|
105
|
-
|
|
106
98
|
/** src/cliHost/definePlugin.ts
|
|
107
99
|
* Plugin contracts for the GetDotenv CLI host.
|
|
108
100
|
*
|
|
@@ -153,6 +145,14 @@ interface GetDotenvCliPlugin {
|
|
|
153
145
|
use: (child: GetDotenvCliPlugin) => GetDotenvCliPlugin;
|
|
154
146
|
}
|
|
155
147
|
|
|
148
|
+
/** * Per-invocation context shared with plugins and actions. */
|
|
149
|
+
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
150
|
+
optionsResolved: TOptions;
|
|
151
|
+
dotenv: ProcessEnv;
|
|
152
|
+
plugins?: Record<string, unknown>;
|
|
153
|
+
pluginConfigs?: Record<string, unknown>;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
156
|
declare const demoPlugin: () => GetDotenvCliPlugin;
|
|
157
157
|
|
|
158
158
|
export { demoPlugin };
|
package/dist/plugins-demo.d.ts
CHANGED
|
@@ -95,14 +95,6 @@ interface GetDotenvOptions {
|
|
|
95
95
|
useConfigLoader?: boolean;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
/** * Per-invocation context shared with plugins and actions. */
|
|
99
|
-
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
100
|
-
optionsResolved: TOptions;
|
|
101
|
-
dotenv: ProcessEnv;
|
|
102
|
-
plugins?: Record<string, unknown>;
|
|
103
|
-
pluginConfigs?: Record<string, unknown>;
|
|
104
|
-
};
|
|
105
|
-
|
|
106
98
|
/** src/cliHost/definePlugin.ts
|
|
107
99
|
* Plugin contracts for the GetDotenv CLI host.
|
|
108
100
|
*
|
|
@@ -153,6 +145,14 @@ interface GetDotenvCliPlugin {
|
|
|
153
145
|
use: (child: GetDotenvCliPlugin) => GetDotenvCliPlugin;
|
|
154
146
|
}
|
|
155
147
|
|
|
148
|
+
/** * Per-invocation context shared with plugins and actions. */
|
|
149
|
+
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
150
|
+
optionsResolved: TOptions;
|
|
151
|
+
dotenv: ProcessEnv;
|
|
152
|
+
plugins?: Record<string, unknown>;
|
|
153
|
+
pluginConfigs?: Record<string, unknown>;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
156
|
declare const demoPlugin: () => GetDotenvCliPlugin;
|
|
157
157
|
|
|
158
158
|
export { demoPlugin };
|
package/dist/plugins-init.d.cts
CHANGED
|
@@ -95,14 +95,6 @@ interface GetDotenvOptions {
|
|
|
95
95
|
useConfigLoader?: boolean;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
/** * Per-invocation context shared with plugins and actions. */
|
|
99
|
-
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
100
|
-
optionsResolved: TOptions;
|
|
101
|
-
dotenv: ProcessEnv;
|
|
102
|
-
plugins?: Record<string, unknown>;
|
|
103
|
-
pluginConfigs?: Record<string, unknown>;
|
|
104
|
-
};
|
|
105
|
-
|
|
106
98
|
/** src/cliHost/definePlugin.ts
|
|
107
99
|
* Plugin contracts for the GetDotenv CLI host.
|
|
108
100
|
*
|
|
@@ -153,6 +145,14 @@ interface GetDotenvCliPlugin {
|
|
|
153
145
|
use: (child: GetDotenvCliPlugin) => GetDotenvCliPlugin;
|
|
154
146
|
}
|
|
155
147
|
|
|
148
|
+
/** * Per-invocation context shared with plugins and actions. */
|
|
149
|
+
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
150
|
+
optionsResolved: TOptions;
|
|
151
|
+
dotenv: ProcessEnv;
|
|
152
|
+
plugins?: Record<string, unknown>;
|
|
153
|
+
pluginConfigs?: Record<string, unknown>;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
156
|
type InitPluginOptions = {
|
|
157
157
|
logger?: Logger;
|
|
158
158
|
};
|
package/dist/plugins-init.d.mts
CHANGED
|
@@ -95,14 +95,6 @@ interface GetDotenvOptions {
|
|
|
95
95
|
useConfigLoader?: boolean;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
/** * Per-invocation context shared with plugins and actions. */
|
|
99
|
-
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
100
|
-
optionsResolved: TOptions;
|
|
101
|
-
dotenv: ProcessEnv;
|
|
102
|
-
plugins?: Record<string, unknown>;
|
|
103
|
-
pluginConfigs?: Record<string, unknown>;
|
|
104
|
-
};
|
|
105
|
-
|
|
106
98
|
/** src/cliHost/definePlugin.ts
|
|
107
99
|
* Plugin contracts for the GetDotenv CLI host.
|
|
108
100
|
*
|
|
@@ -153,6 +145,14 @@ interface GetDotenvCliPlugin {
|
|
|
153
145
|
use: (child: GetDotenvCliPlugin) => GetDotenvCliPlugin;
|
|
154
146
|
}
|
|
155
147
|
|
|
148
|
+
/** * Per-invocation context shared with plugins and actions. */
|
|
149
|
+
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
150
|
+
optionsResolved: TOptions;
|
|
151
|
+
dotenv: ProcessEnv;
|
|
152
|
+
plugins?: Record<string, unknown>;
|
|
153
|
+
pluginConfigs?: Record<string, unknown>;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
156
|
type InitPluginOptions = {
|
|
157
157
|
logger?: Logger;
|
|
158
158
|
};
|
package/dist/plugins-init.d.ts
CHANGED
|
@@ -95,14 +95,6 @@ interface GetDotenvOptions {
|
|
|
95
95
|
useConfigLoader?: boolean;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
/** * Per-invocation context shared with plugins and actions. */
|
|
99
|
-
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
100
|
-
optionsResolved: TOptions;
|
|
101
|
-
dotenv: ProcessEnv;
|
|
102
|
-
plugins?: Record<string, unknown>;
|
|
103
|
-
pluginConfigs?: Record<string, unknown>;
|
|
104
|
-
};
|
|
105
|
-
|
|
106
98
|
/** src/cliHost/definePlugin.ts
|
|
107
99
|
* Plugin contracts for the GetDotenv CLI host.
|
|
108
100
|
*
|
|
@@ -153,6 +145,14 @@ interface GetDotenvCliPlugin {
|
|
|
153
145
|
use: (child: GetDotenvCliPlugin) => GetDotenvCliPlugin;
|
|
154
146
|
}
|
|
155
147
|
|
|
148
|
+
/** * Per-invocation context shared with plugins and actions. */
|
|
149
|
+
type GetDotenvCliCtx<TOptions extends GetDotenvOptions = GetDotenvOptions> = {
|
|
150
|
+
optionsResolved: TOptions;
|
|
151
|
+
dotenv: ProcessEnv;
|
|
152
|
+
plugins?: Record<string, unknown>;
|
|
153
|
+
pluginConfigs?: Record<string, unknown>;
|
|
154
|
+
};
|
|
155
|
+
|
|
156
156
|
type InitPluginOptions = {
|
|
157
157
|
logger?: Logger;
|
|
158
158
|
};
|