@lssm/example.lifecycle-dashboard 0.0.0-canary-20251217034842 → 0.0.0-canary-20251217054315

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.
@@ -1,16 +1,18 @@
1
- $ bun build:bundle && bun build:types
2
- $ tsdown
3
- ℹ tsdown v0.17.4 powered by rolldown v1.0.0-beta.53
4
- ℹ config file: /home/runner/work/contractspec/contractspec/packages/examples/lifecycle-dashboard/tsdown.config.js
5
- ℹ entry: src/example.ts, src/index.ts, src/docs/index.ts, src/docs/lifecycle-dashboard.docblock.ts, src/snippets/page.ts
6
- ℹ target: esnext
7
- ℹ tsconfig: tsconfig.json
8
- ℹ Build start
9
- ℹ dist/snippets/page.js 1.52 kB │ gzip: 0.71 kB
10
- ℹ dist/docs/lifecycle-dashboard.docblock.js 0.79 kB │ gzip: 0.48 kB
11
- ℹ dist/example.js 0.55 kB │ gzip: 0.34 kB
12
- ℹ dist/index.js 0.18 kB │ gzip: 0.13 kB
13
- ℹ dist/docs/index.js 0.04 kB │ gzip: 0.06 kB
14
- ℹ 5 files, total: 3.08 kB
15
- ✔ Build complete in 30ms
16
- $ tsc --noEmit
1
+
2
+ $ bun build:bundle && bun build:types
3
+ $ tsdown
4
+ ℹ tsdown v0.17.4 powered by rolldown v1.0.0-beta.53
5
+ ℹ config file: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/examples/lifecycle-dashboard/tsdown.config.js (unrun)
6
+ ℹ entry: src/example.ts, src/index.ts, src/docs/index.ts, src/docs/lifecycle-dashboard.docblock.ts, src/snippets/page.ts
7
+ ℹ target: esnext
8
+ ℹ tsconfig: tsconfig.json
9
+ ℹ Build start
10
+ ℹ Cleaning 7 files
11
+ ℹ dist/snippets/page.js 1.52 kB │ gzip: 0.71 kB
12
+ ℹ dist/docs/lifecycle-dashboard.docblock.js 0.79 kB │ gzip: 0.48 kB
13
+ ℹ dist/example.js 0.55 kB │ gzip: 0.34 kB
14
+ ℹ dist/index.js 0.18 kB │ gzip: 0.13 kB
15
+ ℹ dist/docs/index.js 0.04 kB │ gzip: 0.06 kB
16
+ ℹ 5 files, total: 3.08 kB
17
+ ✔ Build complete in 25ms
18
+ $ tsc --noEmit
package/CHANGELOG.md CHANGED
@@ -1,8 +1,34 @@
1
1
  # @lssm/example.lifecycle-dashboard
2
2
 
3
- ## 0.0.0-canary-20251217034842
3
+ ## 0.0.0-canary-20251217054315
4
+
5
+ ### Minor Changes
6
+
7
+ - 66a5dfd: initial release
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [66a5dfd]
12
+ - @lssm/lib.contracts@0.0.0-canary-20251217054315
13
+
14
+ ## 1.42.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 66a5dfd: initial release
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [66a5dfd]
23
+ - @lssm/lib.contracts@1.42.0
24
+
25
+ ## 0.0.0-canary-20251217053014
26
+
27
+ ### Minor Changes
28
+
29
+ - 66a5dfd: initial release
4
30
 
5
31
  ### Patch Changes
6
32
 
7
- - Updated dependencies [3086383]
8
- - @lssm/lib.contracts@0.0.0-canary-20251217034842
33
+ - Updated dependencies [66a5dfd]
34
+ - @lssm/lib.contracts@0.0.0-canary-20251217053014
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lssm/example.lifecycle-dashboard",
3
- "version": "0.0.0-canary-20251217034842",
3
+ "version": "0.0.0-canary-20251217054315",
4
4
  "description": "Lifecycle dashboard example (snippet): how to call lifecycle-managed APIs and render a status card.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -14,6 +14,8 @@
14
14
  "./*": "./*"
15
15
  },
16
16
  "scripts": {
17
+ "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
18
+ "publish:pkg:canary": "bun publish:pkg --tag canary",
17
19
  "build": "bun build:bundle && bun build:types",
18
20
  "build:bundle": "tsdown",
19
21
  "build:types": "tsc --noEmit",
@@ -25,11 +27,11 @@
25
27
  "test": "bun test"
26
28
  },
27
29
  "dependencies": {
28
- "@lssm/lib.contracts": "workspace:*"
30
+ "@lssm/lib.contracts": "0.0.0-canary-20251217054315"
29
31
  },
30
32
  "devDependencies": {
31
- "@lssm/tool.tsdown": "workspace:*",
32
- "@lssm/tool.typescript": "workspace:*",
33
+ "@lssm/tool.tsdown": "0.0.0-canary-20251217054315",
34
+ "@lssm/tool.typescript": "0.0.0-canary-20251217054315",
33
35
  "tsdown": "^0.17.4",
34
36
  "typescript": "^5.9.3"
35
37
  },