mirror: Blazing fast w3c Trace Contexts for any JS runtime
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: fix dts release

Marais Rossouw (Jul 2, 2024, 4:01 PM +1000) 17fa348a 1cc795ec

+10 -4
+1 -1
deno.json
··· 1 1 { 2 - "version": "0.2.2", 2 + "version": "0.2.3", 3 3 "name": "@mr/tracecontext", 4 4 "exports": { 5 5 ".": "./mod.ts",
+9 -3
scripts/build.ts
··· 5 5 await build({ 6 6 entryPoints: [ 7 7 './mod.ts', 8 - './traceparent.ts', 9 - './tracestate.ts', 8 + { 9 + name: './traceparent', 10 + path: './traceparent.ts' 11 + }, 12 + { 13 + name: './tracestate', 14 + path: './tracestate.ts' 15 + }, 10 16 ], 11 17 outDir: './npm', 12 18 shims: { 13 19 deno: 'dev', 14 20 }, 15 21 16 - declaration: 'inline', 22 + declaration: 'separate', 17 23 declarationMap: false, 18 24 scriptModule: 'cjs', 19 25 typeCheck: 'both',