@atrim/instrument-node 0.8.1-dev.ae570af.20260116212440 → 0.9.0
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/package.json +6 -6
- package/target/dist/integrations/effect/auto/index.cjs +1145 -1933
- package/target/dist/integrations/effect/auto/index.cjs.map +1 -1
- package/target/dist/integrations/effect/auto/index.d.cts +189 -656
- package/target/dist/integrations/effect/auto/index.d.ts +189 -656
- package/target/dist/integrations/effect/auto/index.js +1136 -1903
- package/target/dist/integrations/effect/auto/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atrim/instrument-node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "OpenTelemetry instrumentation for Node.js with centralized YAML configuration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"tsx": "^4.7.0",
|
|
90
90
|
"typescript": "^5.7.2",
|
|
91
91
|
"vitest": "^4.0.16",
|
|
92
|
-
"@atrim/instrument-core": "0.
|
|
92
|
+
"@atrim/instrument-core": "0.8.0"
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
95
|
"@opentelemetry/api": "^1.0.0",
|
|
@@ -118,10 +118,10 @@
|
|
|
118
118
|
"scripts": {
|
|
119
119
|
"build": "tsup",
|
|
120
120
|
"dev": "tsup --watch",
|
|
121
|
-
"test": "vitest run",
|
|
122
|
-
"test:watch": "vitest",
|
|
123
|
-
"test:coverage": "vitest run --coverage",
|
|
124
|
-
"test:integration": "OTEL_BSP_SCHEDULE_DELAY=500 vitest run --config vitest.integration.config.ts",
|
|
121
|
+
"test": "NODE_OPTIONS='--import tsx' vitest run",
|
|
122
|
+
"test:watch": "NODE_OPTIONS='--import tsx' vitest",
|
|
123
|
+
"test:coverage": "NODE_OPTIONS='--import tsx' vitest run --coverage",
|
|
124
|
+
"test:integration": "NODE_OPTIONS='--import tsx' OTEL_BSP_SCHEDULE_DELAY=500 vitest run --config vitest.integration.config.ts",
|
|
125
125
|
"test:all": "pnpm test && pnpm test:integration",
|
|
126
126
|
"typecheck": "tsc --noEmit",
|
|
127
127
|
"lint": "eslint src",
|