@powerlines/plugin-env 0.15.117 → 0.15.118

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/index.cjs CHANGED
@@ -144,11 +144,11 @@ const plugin = (options = {}) => {
144
144
  order: "post",
145
145
  async handler() {
146
146
  if (this.env.used.env.getProperties().length > 0) {
147
- this.debug(`Persisting used environment configuration reflections to ${require_helpers_persistence.getEnvReflectionsPath(this, "env")}.`);
147
+ this.trace(`Persisting used environment configuration reflections to ${require_helpers_persistence.getEnvReflectionsPath(this, "env")}.`);
148
148
  await require_helpers_persistence.writeEnvReflection(this, this.env.used.env, "env");
149
149
  }
150
150
  if (this.env.used.secrets.getProperties().length > 0) {
151
- this.debug(`Persisting used secret configuration reflections to ${require_helpers_persistence.getEnvReflectionsPath(this, "secrets")}.`);
151
+ this.trace(`Persisting used secret configuration reflections to ${require_helpers_persistence.getEnvReflectionsPath(this, "secrets")}.`);
152
152
  await require_helpers_persistence.writeEnvReflection(this, this.env.used.secrets, "secrets");
153
153
  }
154
154
  }
package/dist/index.mjs CHANGED
@@ -139,11 +139,11 @@ const plugin = (options = {}) => {
139
139
  order: "post",
140
140
  async handler() {
141
141
  if (this.env.used.env.getProperties().length > 0) {
142
- this.debug(`Persisting used environment configuration reflections to ${getEnvReflectionsPath(this, "env")}.`);
142
+ this.trace(`Persisting used environment configuration reflections to ${getEnvReflectionsPath(this, "env")}.`);
143
143
  await writeEnvReflection(this, this.env.used.env, "env");
144
144
  }
145
145
  if (this.env.used.secrets.getProperties().length > 0) {
146
- this.debug(`Persisting used secret configuration reflections to ${getEnvReflectionsPath(this, "secrets")}.`);
146
+ this.trace(`Persisting used secret configuration reflections to ${getEnvReflectionsPath(this, "secrets")}.`);
147
147
  await writeEnvReflection(this, this.env.used.secrets, "secrets");
148
148
  }
149
149
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-env",
3
- "version": "0.15.117",
3
+ "version": "0.15.118",
4
4
  "type": "module",
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
  "repository": {
@@ -201,10 +201,10 @@
201
201
  "@alloy-js/typescript": "^0.22.0",
202
202
  "@babel/core": "^7.28.6",
203
203
  "@babel/types": "^7.28.6",
204
- "@powerlines/plugin-alloy": "^0.18.109",
205
- "@powerlines/plugin-automd": "^0.1.219",
206
- "@powerlines/plugin-babel": "^0.12.228",
207
- "@powerlines/plugin-plugin": "^0.12.170",
204
+ "@powerlines/plugin-alloy": "^0.18.110",
205
+ "@powerlines/plugin-automd": "^0.1.220",
206
+ "@powerlines/plugin-babel": "^0.12.229",
207
+ "@powerlines/plugin-plugin": "^0.12.171",
208
208
  "@storm-software/config-tools": "^1.189.0",
209
209
  "@stryke/capnp": "^0.12.61",
210
210
  "@stryke/env": "^0.20.53",
@@ -214,14 +214,14 @@
214
214
  "@stryke/type-checks": "^0.5.20",
215
215
  "@stryke/types": "^0.10.34",
216
216
  "automd": "^0.4.2",
217
- "powerlines": "^0.37.92"
217
+ "powerlines": "^0.37.93"
218
218
  },
219
219
  "devDependencies": {
220
- "@powerlines/deepkit": "^0.6.2",
221
- "@powerlines/plugin-deepkit": "^0.11.98",
220
+ "@powerlines/deepkit": "^0.6.3",
221
+ "@powerlines/plugin-deepkit": "^0.11.99",
222
222
  "@types/node": "^24.10.9",
223
223
  "vite": "8.0.0-beta.2"
224
224
  },
225
225
  "publishConfig": { "access": "public" },
226
- "gitHead": "e9a0a8a563b60f56aa458632da45426ade7ae9e4"
226
+ "gitHead": "d5c80590b9e7645d9cfa4c4346ce3c7f1f1b0688"
227
227
  }