@contractspec/example.lifecycle-dashboard 1.59.0 → 1.61.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.
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
5
  [contractspec-bun-build] transpile target=bun root=src entries=5
6
- Bundled 5 modules in 18ms
6
+ Bundled 5 modules in 34ms
7
7
 
8
8
  docs/index.js 0.95 KB (entry point)
9
9
  ./index.js 3.46 KB (entry point)
@@ -12,7 +12,7 @@ Bundled 5 modules in 18ms
12
12
  snippets/page.js 1.58 KB (entry point)
13
13
 
14
14
  [contractspec-bun-build] transpile target=node root=src entries=5
15
- Bundled 5 modules in 7ms
15
+ Bundled 5 modules in 37ms
16
16
 
17
17
  docs/index.js 0.94 KB (entry point)
18
18
  ./index.js 3.45 KB (entry point)
@@ -21,7 +21,7 @@ Bundled 5 modules in 7ms
21
21
  snippets/page.js 1.58 KB (entry point)
22
22
 
23
23
  [contractspec-bun-build] transpile target=browser root=src entries=5
24
- Bundled 5 modules in 15ms
24
+ Bundled 5 modules in 47ms
25
25
 
26
26
  docs/index.js 0.94 KB (entry point)
27
27
  ./index.js 3.45 KB (entry point)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @contractspec/example.lifecycle-dashboard
2
2
 
3
+ ## 1.61.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 374fd71: fix: publishing
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [374fd71]
12
+ - @contractspec/lib.contracts@1.61.0
13
+
14
+ ## 1.60.0
15
+
16
+ ### Minor Changes
17
+
18
+ - fix: publish with bun
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @contractspec/lib.contracts@1.60.0
24
+
3
25
  ## 1.59.0
4
26
 
5
27
  ### Minor Changes
package/package.json CHANGED
@@ -1,16 +1,52 @@
1
1
  {
2
2
  "name": "@contractspec/example.lifecycle-dashboard",
3
- "version": "1.59.0",
3
+ "version": "1.61.0",
4
4
  "description": "Lifecycle dashboard example (snippet): how to call lifecycle-managed APIs and render a status card.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
8
- ".": "./src/index.ts",
9
- "./docs": "./src/docs/index.ts",
10
- "./docs/index": "./src/docs/index.ts",
11
- "./docs/lifecycle-dashboard.docblock": "./src/docs/lifecycle-dashboard.docblock.ts",
12
- "./example": "./src/example.ts",
13
- "./snippets/page": "./src/snippets/page.ts"
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "bun": "./dist/index.js",
11
+ "node": "./dist/node/index.js",
12
+ "browser": "./dist/browser/index.js",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./docs": {
16
+ "types": "./dist/docs/index.d.ts",
17
+ "bun": "./dist/docs/index.js",
18
+ "node": "./dist/node/docs/index.js",
19
+ "browser": "./dist/browser/docs/index.js",
20
+ "default": "./dist/docs/index.js"
21
+ },
22
+ "./docs/index": {
23
+ "types": "./dist/docs/index.d.ts",
24
+ "bun": "./dist/docs/index.js",
25
+ "node": "./dist/node/docs/index.js",
26
+ "browser": "./dist/browser/docs/index.js",
27
+ "default": "./dist/docs/index.js"
28
+ },
29
+ "./docs/lifecycle-dashboard.docblock": {
30
+ "types": "./dist/docs/lifecycle-dashboard.docblock.d.ts",
31
+ "bun": "./dist/docs/lifecycle-dashboard.docblock.js",
32
+ "node": "./dist/node/docs/lifecycle-dashboard.docblock.js",
33
+ "browser": "./dist/browser/docs/lifecycle-dashboard.docblock.js",
34
+ "default": "./dist/docs/lifecycle-dashboard.docblock.js"
35
+ },
36
+ "./example": {
37
+ "types": "./dist/example.d.ts",
38
+ "bun": "./dist/example.js",
39
+ "node": "./dist/node/example.js",
40
+ "browser": "./dist/browser/example.js",
41
+ "default": "./dist/example.js"
42
+ },
43
+ "./snippets/page": {
44
+ "types": "./dist/snippets/page.d.ts",
45
+ "bun": "./dist/snippets/page.js",
46
+ "node": "./dist/node/snippets/page.js",
47
+ "browser": "./dist/browser/snippets/page.js",
48
+ "default": "./dist/snippets/page.js"
49
+ }
14
50
  },
15
51
  "scripts": {
16
52
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -28,12 +64,12 @@
28
64
  "typecheck": "tsc --noEmit"
29
65
  },
30
66
  "dependencies": {
31
- "@contractspec/lib.contracts": "1.59.0"
67
+ "@contractspec/lib.contracts": "1.61.0"
32
68
  },
33
69
  "devDependencies": {
34
- "@contractspec/tool.typescript": "1.59.0",
70
+ "@contractspec/tool.typescript": "1.61.0",
35
71
  "typescript": "^5.9.3",
36
- "@contractspec/tool.bun": "1.58.0"
72
+ "@contractspec/tool.bun": "1.60.0"
37
73
  },
38
74
  "publishConfig": {
39
75
  "access": "public",
@@ -41,42 +77,42 @@
41
77
  ".": {
42
78
  "types": "./dist/index.d.ts",
43
79
  "bun": "./dist/index.js",
44
- "node": "./dist/node/index.mjs",
80
+ "node": "./dist/node/index.js",
45
81
  "browser": "./dist/browser/index.js",
46
82
  "default": "./dist/index.js"
47
83
  },
48
84
  "./docs": {
49
85
  "types": "./dist/docs/index.d.ts",
50
86
  "bun": "./dist/docs/index.js",
51
- "node": "./dist/node/docs/index.mjs",
87
+ "node": "./dist/node/docs/index.js",
52
88
  "browser": "./dist/browser/docs/index.js",
53
89
  "default": "./dist/docs/index.js"
54
90
  },
55
91
  "./docs/index": {
56
92
  "types": "./dist/docs/index.d.ts",
57
93
  "bun": "./dist/docs/index.js",
58
- "node": "./dist/node/docs/index.mjs",
94
+ "node": "./dist/node/docs/index.js",
59
95
  "browser": "./dist/browser/docs/index.js",
60
96
  "default": "./dist/docs/index.js"
61
97
  },
62
98
  "./docs/lifecycle-dashboard.docblock": {
63
99
  "types": "./dist/docs/lifecycle-dashboard.docblock.d.ts",
64
100
  "bun": "./dist/docs/lifecycle-dashboard.docblock.js",
65
- "node": "./dist/node/docs/lifecycle-dashboard.docblock.mjs",
101
+ "node": "./dist/node/docs/lifecycle-dashboard.docblock.js",
66
102
  "browser": "./dist/browser/docs/lifecycle-dashboard.docblock.js",
67
103
  "default": "./dist/docs/lifecycle-dashboard.docblock.js"
68
104
  },
69
105
  "./example": {
70
106
  "types": "./dist/example.d.ts",
71
107
  "bun": "./dist/example.js",
72
- "node": "./dist/node/example.mjs",
108
+ "node": "./dist/node/example.js",
73
109
  "browser": "./dist/browser/example.js",
74
110
  "default": "./dist/example.js"
75
111
  },
76
112
  "./snippets/page": {
77
113
  "types": "./dist/snippets/page.d.ts",
78
114
  "bun": "./dist/snippets/page.js",
79
- "node": "./dist/node/snippets/page.mjs",
115
+ "node": "./dist/node/snippets/page.js",
80
116
  "browser": "./dist/browser/snippets/page.js",
81
117
  "default": "./dist/snippets/page.js"
82
118
  }