@powerlines/plugin-open-telemetry 0.1.239 → 0.1.241

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
@@ -9,9 +9,7 @@ let defu = require("defu");
9
9
  defu = require_rolldown_runtime.__toESM(defu, 1);
10
10
  let _powerlines_plugin_alloy_render = require("@powerlines/plugin-alloy/render");
11
11
  let _powerlines_plugin_automd = require("@powerlines/plugin-automd");
12
- _powerlines_plugin_automd = require_rolldown_runtime.__toESM(_powerlines_plugin_automd, 1);
13
12
  let _powerlines_plugin_env = require("@powerlines/plugin-env");
14
- _powerlines_plugin_env = require_rolldown_runtime.__toESM(_powerlines_plugin_env, 1);
15
13
 
16
14
  //#region src/index.tsx
17
15
  /**
@@ -19,7 +17,7 @@ _powerlines_plugin_env = require_rolldown_runtime.__toESM(_powerlines_plugin_env
19
17
  */
20
18
  const plugin = (options = {}) => {
21
19
  return [
22
- (0, _powerlines_plugin_env.default)(options.env),
20
+ (0, _powerlines_plugin_env.plugin)(options.env),
23
21
  {
24
22
  name: "open-telemetry",
25
23
  async prepare() {
@@ -33,7 +31,7 @@ const plugin = (options = {}) => {
33
31
  return { automd: (0, defu.default)(options.automd ?? {}, { generators: { trace: require_helpers_automd_generator.trace(this) } }) };
34
32
  }
35
33
  },
36
- (0, _powerlines_plugin_automd.default)(options.automd)
34
+ (0, _powerlines_plugin_automd.plugin)(options.automd)
37
35
  ];
38
36
  };
39
37
 
package/dist/index.mjs CHANGED
@@ -5,8 +5,8 @@ import { TraceBuiltin } from "./components/trace-builtin.mjs";
5
5
  import { createComponent } from "@alloy-js/core/jsx-runtime";
6
6
  import defu from "defu";
7
7
  import { render } from "@powerlines/plugin-alloy/render";
8
- import automd from "@powerlines/plugin-automd";
9
- import env from "@powerlines/plugin-env";
8
+ import { plugin as plugin$1 } from "@powerlines/plugin-automd";
9
+ import { plugin as plugin$2 } from "@powerlines/plugin-env";
10
10
 
11
11
  //#region src/index.tsx
12
12
  /**
@@ -14,7 +14,7 @@ import env from "@powerlines/plugin-env";
14
14
  */
15
15
  const plugin = (options = {}) => {
16
16
  return [
17
- env(options.env),
17
+ plugin$2(options.env),
18
18
  {
19
19
  name: "open-telemetry",
20
20
  async prepare() {
@@ -28,7 +28,7 @@ const plugin = (options = {}) => {
28
28
  return { automd: defu(options.automd ?? {}, { generators: { trace: trace(this) } }) };
29
29
  }
30
30
  },
31
- automd(options.automd)
31
+ plugin$1(options.automd)
32
32
  ];
33
33
  };
34
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-open-telemetry",
3
- "version": "0.1.239",
3
+ "version": "0.1.241",
4
4
  "private": false,
5
5
  "description": "A package containing a Powerlines plugin for registering OpenTelemetry integration at runtime.",
6
6
  "keywords": [
@@ -184,10 +184,10 @@
184
184
  "@alloy-js/json": "^0.24.0",
185
185
  "@alloy-js/markdown": "^0.24.0",
186
186
  "@alloy-js/typescript": "^0.24.0",
187
- "@power-plant/alloy-js": "^0.0.86",
188
- "@powerlines/plugin-alloy": "^0.26.307",
189
- "@powerlines/plugin-automd": "^0.1.671",
190
- "@powerlines/plugin-env": "^0.16.418",
187
+ "@power-plant/alloy-js": "^0.0.87",
188
+ "@powerlines/plugin-alloy": "^0.26.309",
189
+ "@powerlines/plugin-automd": "^0.1.673",
190
+ "@powerlines/plugin-env": "^0.16.420",
191
191
  "@storm-software/config-tools": "^1.190.133",
192
192
  "@stryke/convert": "^0.7.39",
193
193
  "@stryke/env": "^0.20.127",
@@ -200,7 +200,7 @@
200
200
  "automd": "^0.4.3",
201
201
  "c12": "^3.3.4",
202
202
  "defu": "^6.1.7",
203
- "powerlines": "^0.47.209",
203
+ "powerlines": "^0.47.211",
204
204
  "zod": "^4.4.3"
205
205
  },
206
206
  "devDependencies": {
@@ -216,7 +216,7 @@
216
216
  "@opentelemetry/sdk-logs": "^0.220.0",
217
217
  "@opentelemetry/sdk-metrics": "^2.10.0",
218
218
  "@opentelemetry/sdk-trace-base": "^2.10.0",
219
- "@powerlines/plugin-plugin": "^0.12.622",
219
+ "@powerlines/plugin-plugin": "^0.12.624",
220
220
  "@types/node": "^25.9.5",
221
221
  "protobufjs": "^7.6.5"
222
222
  },
@@ -233,5 +233,5 @@
233
233
  "@opentelemetry/sdk-trace-base": ">=2.0.0 <3.0.0"
234
234
  },
235
235
  "publishConfig": { "access": "public" },
236
- "gitHead": "88974b224a5cdb97dbd377373c9ed7f8a8780324"
236
+ "gitHead": "b009e583e12f04c70454ada388ceaae84d7ae6db"
237
237
  }