@contractspec/lib.example-shared-ui 6.0.15 → 6.0.16
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/.turbo/turbo-build.log +4 -5
- package/CHANGELOG.md +12 -0
- package/package.json +10 -10
- package/.turbo/turbo-prebuild.log +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
$ contractspec-bun-build prebuild
|
|
2
|
-
$ bun run
|
|
3
|
-
$ contractspec-bun-build prebuild
|
|
2
|
+
$ bun run build:bundle && bun run build:types
|
|
4
3
|
$ contractspec-bun-build transpile
|
|
5
4
|
[contractspec-bun-build] transpile target=bun root=src entries=28 noBundle=false
|
|
6
|
-
Bundled 28 modules in
|
|
5
|
+
Bundled 28 modules in 47ms
|
|
7
6
|
|
|
8
7
|
./EvolutionDashboard.js 31.40 KB (entry point)
|
|
9
8
|
./index.js 119.50 KB (entry point)
|
|
@@ -35,7 +34,7 @@ Bundled 28 modules in 43ms
|
|
|
35
34
|
lib/runtime-context.js 430 bytes (entry point)
|
|
36
35
|
|
|
37
36
|
[contractspec-bun-build] transpile target=node root=src entries=28 noBundle=false
|
|
38
|
-
Bundled 28 modules in
|
|
37
|
+
Bundled 28 modules in 55ms
|
|
39
38
|
|
|
40
39
|
./EvolutionDashboard.js 31.38 KB (entry point)
|
|
41
40
|
./index.js 119.44 KB (entry point)
|
|
@@ -67,7 +66,7 @@ Bundled 28 modules in 18ms
|
|
|
67
66
|
lib/runtime-context.js 422 bytes (entry point)
|
|
68
67
|
|
|
69
68
|
[contractspec-bun-build] transpile target=browser root=src entries=28 noBundle=false
|
|
70
|
-
Bundled 28 modules in
|
|
69
|
+
Bundled 28 modules in 63ms
|
|
71
70
|
|
|
72
71
|
./EvolutionDashboard.js 31.38 KB (entry point)
|
|
73
72
|
./index.js 119.44 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @contractspec/lib.example-shared-ui
|
|
2
2
|
|
|
3
|
+
## 6.0.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2b59171: fix: crypto package issue due to nodejs only runtime
|
|
8
|
+
- Updated dependencies [2b59171]
|
|
9
|
+
- @contractspec/lib.presentation-runtime-core@3.9.4
|
|
10
|
+
- @contractspec/lib.surface-runtime@0.5.16
|
|
11
|
+
- @contractspec/lib.contracts-spec@5.0.4
|
|
12
|
+
- @contractspec/lib.design-system@3.8.9
|
|
13
|
+
- @contractspec/lib.ui-kit-web@3.9.8
|
|
14
|
+
|
|
3
15
|
## 6.0.15
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.example-shared-ui",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.16",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -203,7 +203,7 @@
|
|
|
203
203
|
"scripts": {
|
|
204
204
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
205
205
|
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
206
|
-
"build": "bun run
|
|
206
|
+
"build": "bun run build:bundle && bun run build:types",
|
|
207
207
|
"build:bundle": "contractspec-bun-build transpile",
|
|
208
208
|
"build:types": "contractspec-bun-build types",
|
|
209
209
|
"dev": "contractspec-bun-build dev",
|
|
@@ -423,7 +423,7 @@
|
|
|
423
423
|
}
|
|
424
424
|
},
|
|
425
425
|
"peerDependencies": {
|
|
426
|
-
"@contractspec/lib.surface-runtime": "0.5.
|
|
426
|
+
"@contractspec/lib.surface-runtime": "0.5.16"
|
|
427
427
|
},
|
|
428
428
|
"peerDependenciesMeta": {
|
|
429
429
|
"@contractspec/lib.surface-runtime": {
|
|
@@ -432,25 +432,25 @@
|
|
|
432
432
|
},
|
|
433
433
|
"dependencies": {
|
|
434
434
|
"@apollo/client": "^4.1.6",
|
|
435
|
-
"@contractspec/lib.contracts-spec": "5.0.
|
|
436
|
-
"@contractspec/lib.design-system": "3.8.
|
|
437
|
-
"@contractspec/lib.ui-kit-web": "3.9.
|
|
435
|
+
"@contractspec/lib.contracts-spec": "5.0.4",
|
|
436
|
+
"@contractspec/lib.design-system": "3.8.9",
|
|
437
|
+
"@contractspec/lib.ui-kit-web": "3.9.8",
|
|
438
438
|
"@tanstack/react-query": "^5.95.2",
|
|
439
439
|
"framer-motion": "^12.38.0",
|
|
440
440
|
"lucide-react": "^1.6.0",
|
|
441
441
|
"react": "19.2.0",
|
|
442
442
|
"react-dom": "19.2.0",
|
|
443
|
-
"@contractspec/lib.presentation-runtime-core": "3.9.
|
|
443
|
+
"@contractspec/lib.presentation-runtime-core": "3.9.4"
|
|
444
444
|
},
|
|
445
445
|
"optionalDependencies": {
|
|
446
|
-
"@contractspec/lib.surface-runtime": "0.5.
|
|
446
|
+
"@contractspec/lib.surface-runtime": "0.5.16"
|
|
447
447
|
},
|
|
448
448
|
"devDependencies": {
|
|
449
|
-
"@contractspec/tool.typescript": "3.7.
|
|
449
|
+
"@contractspec/tool.typescript": "3.7.12",
|
|
450
450
|
"@types/react": "^19.2.14",
|
|
451
451
|
"@types/react-dom": "^19.2.2",
|
|
452
452
|
"typescript": "^5.9.3",
|
|
453
|
-
"@contractspec/tool.bun": "3.7.
|
|
453
|
+
"@contractspec/tool.bun": "3.7.12"
|
|
454
454
|
},
|
|
455
455
|
"types": "./dist/index.d.ts"
|
|
456
456
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
$ contractspec-bun-build prebuild
|