@powerlines/plugin-env 0.16.354 → 0.16.355
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/helpers/load.d.cts
CHANGED
|
@@ -19,15 +19,15 @@ declare function loadEnvFromContext(context: EnvPluginContext, parsed: DotenvPar
|
|
|
19
19
|
RELEASE_TAG: string;
|
|
20
20
|
DEFAULT_LOCALE: string | undefined;
|
|
21
21
|
DEFAULT_TIMEZONE: string | undefined;
|
|
22
|
-
LOG_LEVEL: "
|
|
22
|
+
LOG_LEVEL: "silent" | "error" | "warn" | "info" | "debug";
|
|
23
23
|
ERROR_URL: string | undefined;
|
|
24
24
|
ORGANIZATION: string | undefined;
|
|
25
25
|
PLATFORM: "node" | "browser" | "neutral";
|
|
26
|
-
MODE: "
|
|
26
|
+
MODE: "test" | "development" | "production";
|
|
27
27
|
TEST: boolean;
|
|
28
28
|
DEBUG: boolean;
|
|
29
29
|
STACKTRACE: boolean;
|
|
30
|
-
RUNTIME: "
|
|
30
|
+
RUNTIME: "edge" | "browser" | "nodejs" | "workerd" | undefined;
|
|
31
31
|
ENVIRONMENT: string;
|
|
32
32
|
};
|
|
33
33
|
declare function loadEnv<TEnv extends DotenvParseOutput = DotenvParseOutput>(context: EnvPluginContext, options?: EnvPluginOptions): Promise<TEnv>;
|
package/dist/helpers/load.d.mts
CHANGED
|
@@ -19,15 +19,15 @@ declare function loadEnvFromContext(context: EnvPluginContext, parsed: DotenvPar
|
|
|
19
19
|
RELEASE_TAG: string;
|
|
20
20
|
DEFAULT_LOCALE: string | undefined;
|
|
21
21
|
DEFAULT_TIMEZONE: string | undefined;
|
|
22
|
-
LOG_LEVEL: "
|
|
22
|
+
LOG_LEVEL: "silent" | "error" | "warn" | "info" | "debug";
|
|
23
23
|
ERROR_URL: string | undefined;
|
|
24
24
|
ORGANIZATION: string | undefined;
|
|
25
25
|
PLATFORM: "node" | "browser" | "neutral";
|
|
26
|
-
MODE: "
|
|
26
|
+
MODE: "test" | "development" | "production";
|
|
27
27
|
TEST: boolean;
|
|
28
28
|
DEBUG: boolean;
|
|
29
29
|
STACKTRACE: boolean;
|
|
30
|
-
RUNTIME: "
|
|
30
|
+
RUNTIME: "edge" | "browser" | "nodejs" | "workerd" | undefined;
|
|
31
31
|
ENVIRONMENT: string;
|
|
32
32
|
};
|
|
33
33
|
declare function loadEnv<TEnv extends DotenvParseOutput = DotenvParseOutput>(context: EnvPluginContext, options?: EnvPluginOptions): Promise<TEnv>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-env",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.355",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing a Powerlines plugin for injecting static .env configuration values to the code so that they're accessible at runtime.",
|
|
6
6
|
"keywords": ["dotenv", "powerlines", "storm-software", "powerlines-plugin"],
|
|
@@ -251,12 +251,12 @@
|
|
|
251
251
|
"@babel/core": "^8.0.1",
|
|
252
252
|
"@babel/types": "^8.0.4",
|
|
253
253
|
"@power-plant/alloy-js": "^0.0.23",
|
|
254
|
-
"@power-plant/schema": "^0.0.
|
|
255
|
-
"@powerlines/core": "^0.48.
|
|
256
|
-
"@powerlines/plugin-alloy": "^0.26.
|
|
257
|
-
"@powerlines/plugin-automd": "^0.1.
|
|
258
|
-
"@powerlines/plugin-babel": "^0.13.
|
|
259
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
254
|
+
"@power-plant/schema": "^0.0.26",
|
|
255
|
+
"@powerlines/core": "^0.48.72",
|
|
256
|
+
"@powerlines/plugin-alloy": "^0.26.244",
|
|
257
|
+
"@powerlines/plugin-automd": "^0.1.612",
|
|
258
|
+
"@powerlines/plugin-babel": "^0.13.147",
|
|
259
|
+
"@powerlines/plugin-plugin": "^0.12.563",
|
|
260
260
|
"@storm-software/config-tools": "^1.190.109",
|
|
261
261
|
"@stryke/capnp": "^0.12.123",
|
|
262
262
|
"@stryke/convert": "^0.7.27",
|
|
@@ -271,9 +271,9 @@
|
|
|
271
271
|
"automd": "^0.4.3",
|
|
272
272
|
"c12": "^3.3.4",
|
|
273
273
|
"defu": "^6.1.7",
|
|
274
|
-
"powerlines": "^0.47.
|
|
274
|
+
"powerlines": "^0.47.151"
|
|
275
275
|
},
|
|
276
276
|
"devDependencies": { "@types/node": "^25.9.5", "vite": "^8.1.5" },
|
|
277
277
|
"publishConfig": { "access": "public" },
|
|
278
|
-
"gitHead": "
|
|
278
|
+
"gitHead": "6060a007470f2b07ed9c6fcb5249d5c2a3c68477"
|
|
279
279
|
}
|