@powerlines/plugin-env 0.16.418 → 0.16.419
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/schema.d.cts.map +1 -1
- package/dist/index.cjs +2 -4
- package/dist/index.mjs +4 -4
- package/package.json +9 -9
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.cts","names":[],"sources":["../../src/helpers/schema.ts"],"mappings":";;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"schema.d.cts","names":[],"sources":["../../src/helpers/schema.ts"],"mappings":";;;;;;;;;;iBA0CsB,yBACpB,iBAAiB,mBACjB,SAAS,WAAW;;;;;;;iBAmBA,iBAAiB,iBAAiB,mBACtD,SAAS,WACR,QAAQ;;;;;;;iBAaW,kBAAkB,iBAAiB,mBACvD,SAAS,WACR,QAAQ;;;;;;;iBAaK,kBAAkB,iBAAiB,kBACjD,SAAS;iBAKK,iBAAiB,iBAAiB,kBAChD,SAAS,UACT;;;;;;;;;;iBA+CoB,WAAW,iBAAiB,kBAChD,SAAS,WACR;;;;;;;iBAqNmB,SAAS,iBAAiB,kBAC9C,SAAS,WACR"}
|
package/dist/index.cjs
CHANGED
|
@@ -16,9 +16,7 @@ let _stryke_convert_to_array = require("@stryke/convert/to-array");
|
|
|
16
16
|
let _stryke_helpers_get_unique = require("@stryke/helpers/get-unique");
|
|
17
17
|
let _powerlines_plugin_alloy_render = require("@powerlines/plugin-alloy/render");
|
|
18
18
|
let _powerlines_plugin_automd = require("@powerlines/plugin-automd");
|
|
19
|
-
_powerlines_plugin_automd = require_rolldown_runtime.__toESM(_powerlines_plugin_automd, 1);
|
|
20
19
|
let _powerlines_plugin_babel = require("@powerlines/plugin-babel");
|
|
21
|
-
_powerlines_plugin_babel = require_rolldown_runtime.__toESM(_powerlines_plugin_babel, 1);
|
|
22
20
|
let _stryke_string_format_constant_case = require("@stryke/string-format/constant-case");
|
|
23
21
|
|
|
24
22
|
//#region src/index.tsx
|
|
@@ -27,7 +25,7 @@ let _stryke_string_format_constant_case = require("@stryke/string-format/constan
|
|
|
27
25
|
*/
|
|
28
26
|
const plugin = (options = {}) => {
|
|
29
27
|
return [
|
|
30
|
-
(0, _powerlines_plugin_babel.
|
|
28
|
+
(0, _powerlines_plugin_babel.plugin)(options.babel),
|
|
31
29
|
{
|
|
32
30
|
name: "env",
|
|
33
31
|
async config() {
|
|
@@ -85,7 +83,7 @@ const plugin = (options = {}) => {
|
|
|
85
83
|
return { envPrefix: this.config?.env?.prefix };
|
|
86
84
|
} }
|
|
87
85
|
},
|
|
88
|
-
(0, _powerlines_plugin_automd.
|
|
86
|
+
(0, _powerlines_plugin_automd.plugin)(options.automd)
|
|
89
87
|
];
|
|
90
88
|
};
|
|
91
89
|
|
package/dist/index.mjs
CHANGED
|
@@ -12,8 +12,8 @@ import { createComponent } from "@alloy-js/core/jsx-runtime";
|
|
|
12
12
|
import { toArray } from "@stryke/convert/to-array";
|
|
13
13
|
import { getUnique } from "@stryke/helpers/get-unique";
|
|
14
14
|
import { render } from "@powerlines/plugin-alloy/render";
|
|
15
|
-
import
|
|
16
|
-
import
|
|
15
|
+
import { plugin as plugin$1 } from "@powerlines/plugin-automd";
|
|
16
|
+
import { plugin as plugin$2 } from "@powerlines/plugin-babel";
|
|
17
17
|
import { constantCase } from "@stryke/string-format/constant-case";
|
|
18
18
|
|
|
19
19
|
//#region src/index.tsx
|
|
@@ -22,7 +22,7 @@ import { constantCase } from "@stryke/string-format/constant-case";
|
|
|
22
22
|
*/
|
|
23
23
|
const plugin = (options = {}) => {
|
|
24
24
|
return [
|
|
25
|
-
|
|
25
|
+
plugin$2(options.babel),
|
|
26
26
|
{
|
|
27
27
|
name: "env",
|
|
28
28
|
async config() {
|
|
@@ -80,7 +80,7 @@ const plugin = (options = {}) => {
|
|
|
80
80
|
return { envPrefix: this.config?.env?.prefix };
|
|
81
81
|
} }
|
|
82
82
|
},
|
|
83
|
-
|
|
83
|
+
plugin$1(options.automd)
|
|
84
84
|
];
|
|
85
85
|
};
|
|
86
86
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-env",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.419",
|
|
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"],
|
|
@@ -266,11 +266,11 @@
|
|
|
266
266
|
"@babel/types": "^8.0.4",
|
|
267
267
|
"@power-plant/alloy-js": "^0.0.86",
|
|
268
268
|
"@power-plant/schema": "^0.0.87",
|
|
269
|
-
"@powerlines/core": "^0.48.
|
|
270
|
-
"@powerlines/plugin-alloy": "^0.26.
|
|
271
|
-
"@powerlines/plugin-automd": "^0.1.
|
|
272
|
-
"@powerlines/plugin-babel": "^0.13.
|
|
273
|
-
"@powerlines/plugin-power-plant": "^0.1.
|
|
269
|
+
"@powerlines/core": "^0.48.129",
|
|
270
|
+
"@powerlines/plugin-alloy": "^0.26.308",
|
|
271
|
+
"@powerlines/plugin-automd": "^0.1.672",
|
|
272
|
+
"@powerlines/plugin-babel": "^0.13.207",
|
|
273
|
+
"@powerlines/plugin-power-plant": "^0.1.67",
|
|
274
274
|
"@storm-software/config-tools": "^1.190.133",
|
|
275
275
|
"@stryke/capnp": "^0.12.137",
|
|
276
276
|
"@stryke/convert": "^0.7.39",
|
|
@@ -285,14 +285,14 @@
|
|
|
285
285
|
"automd": "^0.4.3",
|
|
286
286
|
"c12": "^3.3.4",
|
|
287
287
|
"defu": "^6.1.7",
|
|
288
|
-
"powerlines": "^0.47.
|
|
288
|
+
"powerlines": "^0.47.210",
|
|
289
289
|
"zod": "^4.4.3"
|
|
290
290
|
},
|
|
291
291
|
"devDependencies": {
|
|
292
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
292
|
+
"@powerlines/plugin-plugin": "^0.12.623",
|
|
293
293
|
"@types/node": "^25.9.5",
|
|
294
294
|
"vite": "^8.2.1"
|
|
295
295
|
},
|
|
296
296
|
"publishConfig": { "access": "public" },
|
|
297
|
-
"gitHead": "
|
|
297
|
+
"gitHead": "4ee69b33975e2fa912d2c73700dc7e949f25b2d4"
|
|
298
298
|
}
|