@powerlines/plugin-env 0.16.418 → 0.16.420

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.
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.cts","names":[],"sources":["../../src/helpers/schema.ts"],"mappings":";;;;;;;;;;iBA2CsB,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"}
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.default)(options.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.default)(options.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 automd from "@powerlines/plugin-automd";
16
- import babel from "@powerlines/plugin-babel";
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
- babel(options.babel),
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
- automd(options.automd)
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.418",
3
+ "version": "0.16.420",
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"],
@@ -264,13 +264,13 @@
264
264
  "@alloy-js/typescript": "^0.24.0",
265
265
  "@babel/core": "^8.0.1",
266
266
  "@babel/types": "^8.0.4",
267
- "@power-plant/alloy-js": "^0.0.86",
268
- "@power-plant/schema": "^0.0.87",
269
- "@powerlines/core": "^0.48.128",
270
- "@powerlines/plugin-alloy": "^0.26.307",
271
- "@powerlines/plugin-automd": "^0.1.671",
272
- "@powerlines/plugin-babel": "^0.13.206",
273
- "@powerlines/plugin-power-plant": "^0.1.66",
267
+ "@power-plant/alloy-js": "^0.0.87",
268
+ "@power-plant/schema": "^0.0.88",
269
+ "@powerlines/core": "^0.48.130",
270
+ "@powerlines/plugin-alloy": "^0.26.309",
271
+ "@powerlines/plugin-automd": "^0.1.673",
272
+ "@powerlines/plugin-babel": "^0.13.208",
273
+ "@powerlines/plugin-power-plant": "^0.1.68",
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.209",
288
+ "powerlines": "^0.47.211",
289
289
  "zod": "^4.4.3"
290
290
  },
291
291
  "devDependencies": {
292
- "@powerlines/plugin-plugin": "^0.12.622",
292
+ "@powerlines/plugin-plugin": "^0.12.624",
293
293
  "@types/node": "^25.9.5",
294
294
  "vite": "^8.2.1"
295
295
  },
296
296
  "publishConfig": { "access": "public" },
297
- "gitHead": "88974b224a5cdb97dbd377373c9ed7f8a8780324"
297
+ "gitHead": "b009e583e12f04c70454ada388ceaae84d7ae6db"
298
298
  }