@powerlines/plugin-env 0.16.204 → 0.16.206
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 +2 -2
- package/dist/helpers/load.d.mts +2 -2
- package/package.json +23 -23
package/dist/helpers/load.d.cts
CHANGED
|
@@ -20,7 +20,7 @@ declare function loadEnvFromContext(context: EnvPluginContext, parsed: DotenvPar
|
|
|
20
20
|
RELEASE_TAG: string;
|
|
21
21
|
DEFAULT_LOCALE: string | undefined;
|
|
22
22
|
DEFAULT_TIMEZONE: string | undefined;
|
|
23
|
-
LOG_LEVEL: "
|
|
23
|
+
LOG_LEVEL: "error" | "warn" | "info" | "debug" | "silent";
|
|
24
24
|
ERROR_URL: string | undefined;
|
|
25
25
|
ORGANIZATION: string | undefined;
|
|
26
26
|
PLATFORM: "node" | "browser" | "neutral";
|
|
@@ -28,7 +28,7 @@ declare function loadEnvFromContext(context: EnvPluginContext, parsed: DotenvPar
|
|
|
28
28
|
TEST: boolean;
|
|
29
29
|
DEBUG: boolean;
|
|
30
30
|
STACKTRACE: boolean;
|
|
31
|
-
RUNTIME: "
|
|
31
|
+
RUNTIME: "browser" | "nodejs" | "workerd" | "edge" | undefined;
|
|
32
32
|
ENVIRONMENT: string;
|
|
33
33
|
};
|
|
34
34
|
declare function loadEnv<TEnv extends DotenvParseOutput = DotenvParseOutput>(context: EnvPluginContext, options: EnvPluginOptions): Promise<TEnv>;
|
package/dist/helpers/load.d.mts
CHANGED
|
@@ -20,7 +20,7 @@ declare function loadEnvFromContext(context: EnvPluginContext, parsed: DotenvPar
|
|
|
20
20
|
RELEASE_TAG: string;
|
|
21
21
|
DEFAULT_LOCALE: string | undefined;
|
|
22
22
|
DEFAULT_TIMEZONE: string | undefined;
|
|
23
|
-
LOG_LEVEL: "
|
|
23
|
+
LOG_LEVEL: "error" | "warn" | "info" | "debug" | "silent";
|
|
24
24
|
ERROR_URL: string | undefined;
|
|
25
25
|
ORGANIZATION: string | undefined;
|
|
26
26
|
PLATFORM: "node" | "browser" | "neutral";
|
|
@@ -28,7 +28,7 @@ declare function loadEnvFromContext(context: EnvPluginContext, parsed: DotenvPar
|
|
|
28
28
|
TEST: boolean;
|
|
29
29
|
DEBUG: boolean;
|
|
30
30
|
STACKTRACE: boolean;
|
|
31
|
-
RUNTIME: "
|
|
31
|
+
RUNTIME: "browser" | "nodejs" | "workerd" | "edge" | undefined;
|
|
32
32
|
ENVIRONMENT: string;
|
|
33
33
|
};
|
|
34
34
|
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.206",
|
|
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"],
|
|
@@ -119,31 +119,31 @@
|
|
|
119
119
|
"@alloy-js/typescript": "0.23.0-dev.4",
|
|
120
120
|
"@babel/core": "8.0.0-rc.5",
|
|
121
121
|
"@babel/types": "8.0.0-rc.5",
|
|
122
|
-
"@powerlines/core": "^0.
|
|
123
|
-
"@powerlines/deepkit": "^0.
|
|
124
|
-
"@powerlines/plugin-alloy": "^0.26.
|
|
125
|
-
"@powerlines/plugin-automd": "^0.1.
|
|
126
|
-
"@powerlines/plugin-babel": "^0.13.
|
|
127
|
-
"@powerlines/plugin-deepkit": "^0.11.
|
|
128
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
129
|
-
"@powerlines/schema": "^0.
|
|
130
|
-
"@storm-software/config-tools": "^1.190.
|
|
131
|
-
"@stryke/capnp": "^0.12.
|
|
132
|
-
"@stryke/convert": "^0.7.
|
|
133
|
-
"@stryke/env": "^0.20.
|
|
134
|
-
"@stryke/fs": "^0.33.
|
|
135
|
-
"@stryke/helpers": "^0.10.
|
|
136
|
-
"@stryke/json": "^0.
|
|
137
|
-
"@stryke/path": "^0.29.
|
|
138
|
-
"@stryke/string-format": "^0.17.
|
|
139
|
-
"@stryke/type-checks": "^0.6.
|
|
140
|
-
"@stryke/types": "^0.12.
|
|
122
|
+
"@powerlines/core": "^0.9.0",
|
|
123
|
+
"@powerlines/deepkit": "^0.9.0",
|
|
124
|
+
"@powerlines/plugin-alloy": "^0.26.98",
|
|
125
|
+
"@powerlines/plugin-automd": "^0.1.478",
|
|
126
|
+
"@powerlines/plugin-babel": "^0.13.14",
|
|
127
|
+
"@powerlines/plugin-deepkit": "^0.11.360",
|
|
128
|
+
"@powerlines/plugin-plugin": "^0.12.429",
|
|
129
|
+
"@powerlines/schema": "^0.9.0",
|
|
130
|
+
"@storm-software/config-tools": "^1.190.13",
|
|
131
|
+
"@stryke/capnp": "^0.12.102",
|
|
132
|
+
"@stryke/convert": "^0.7.7",
|
|
133
|
+
"@stryke/env": "^0.20.93",
|
|
134
|
+
"@stryke/fs": "^0.33.76",
|
|
135
|
+
"@stryke/helpers": "^0.10.16",
|
|
136
|
+
"@stryke/json": "^0.15.0",
|
|
137
|
+
"@stryke/path": "^0.29.3",
|
|
138
|
+
"@stryke/string-format": "^0.17.18",
|
|
139
|
+
"@stryke/type-checks": "^0.6.9",
|
|
140
|
+
"@stryke/types": "^0.12.4",
|
|
141
141
|
"automd": "^0.4.3",
|
|
142
142
|
"c12": "^3.3.4",
|
|
143
143
|
"defu": "^6.1.7",
|
|
144
|
-
"powerlines": "^0.47.
|
|
144
|
+
"powerlines": "^0.47.17"
|
|
145
145
|
},
|
|
146
|
-
"devDependencies": { "@types/node": "^25.
|
|
146
|
+
"devDependencies": { "@types/node": "^25.8.0", "vite": "^8.0.13" },
|
|
147
147
|
"publishConfig": { "access": "public" },
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "8e3c08ac9b40e909814a16d808fae1a98d392d65"
|
|
149
149
|
}
|