@lssm/lib.observability 0.3.0 → 0.4.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +11 -0
  3. package/package.json +9 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @lssm/lib.observability
2
2
 
3
+ ## 0.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b7621d3: Fix version
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [b7621d3]
12
+ - @lssm/lib.lifecycle@0.3.0
13
+
3
14
  ## 0.3.0
4
15
 
5
16
  ### Minor Changes
package/README.md CHANGED
@@ -54,3 +54,14 @@ Full docs: https://contractspec.chaman.ventures/docs/libraries/observability
54
54
 
55
55
 
56
56
 
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@lssm/lib.observability",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "main": "./dist/index.mjs",
5
5
  "types": "./dist/index.d.mts",
6
6
  "scripts": {
7
+ "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
7
8
  "build": "bun build:bundle && bun build:types",
8
9
  "build:bundle": "tsdown",
9
10
  "build:types": "tsc --noEmit",
@@ -12,17 +13,16 @@
12
13
  "lint": "bun lint:fix",
13
14
  "lint:fix": "eslint src --fix",
14
15
  "lint:check": "eslint src",
15
- "test": "vitest run"
16
+ "test": "bun run"
16
17
  },
17
18
  "dependencies": {
18
- "@lssm/lib.lifecycle": "*"
19
+ "@lssm/lib.lifecycle": "0.3.0"
19
20
  },
20
21
  "peerDependencies": {
21
22
  "@opentelemetry/api": "*"
22
23
  },
23
24
  "devDependencies": {
24
- "typescript": "^5.0.0",
25
- "vitest": "^1.0.0"
25
+ "typescript": "^5.0.0"
26
26
  },
27
27
  "exports": {
28
28
  ".": "./dist/index.mjs",
@@ -40,5 +40,8 @@
40
40
  "./tracing/middleware": "./dist/tracing/middleware.mjs",
41
41
  "./*": "./*"
42
42
  },
43
- "module": "./dist/index.mjs"
43
+ "module": "./dist/index.mjs",
44
+ "publishConfig": {
45
+ "access": "public"
46
+ }
44
47
  }