@contractspec/lib.example-shared-ui 1.12.0 → 1.13.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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +13 -0
- package/package.json +6 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -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=23
|
|
6
|
-
Bundled 23 modules in
|
|
6
|
+
Bundled 23 modules in 31ms
|
|
7
7
|
|
|
8
8
|
./EvolutionDashboard.js 31.40 KB (entry point)
|
|
9
9
|
./index.js 120.97 KB (entry point)
|
|
@@ -30,7 +30,7 @@ Bundled 23 modules in 41ms
|
|
|
30
30
|
lib/runtime-context.js 430 bytes (entry point)
|
|
31
31
|
|
|
32
32
|
[contractspec-bun-build] transpile target=node root=src entries=23
|
|
33
|
-
Bundled 23 modules in
|
|
33
|
+
Bundled 23 modules in 40ms
|
|
34
34
|
|
|
35
35
|
./EvolutionDashboard.js 31.38 KB (entry point)
|
|
36
36
|
./index.js 120.91 KB (entry point)
|
|
@@ -57,7 +57,7 @@ Bundled 23 modules in 61ms
|
|
|
57
57
|
lib/runtime-context.js 422 bytes (entry point)
|
|
58
58
|
|
|
59
59
|
[contractspec-bun-build] transpile target=browser root=src entries=23
|
|
60
|
-
Bundled 23 modules in
|
|
60
|
+
Bundled 23 modules in 27ms
|
|
61
61
|
|
|
62
62
|
./EvolutionDashboard.js 31.38 KB (entry point)
|
|
63
63
|
./index.js 120.91 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @contractspec/lib.example-shared-ui
|
|
2
2
|
|
|
3
|
+
## 1.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1a0cf44]
|
|
12
|
+
- @contractspec/lib.design-system@1.59.0
|
|
13
|
+
- @contractspec/lib.ui-kit-web@1.59.0
|
|
14
|
+
- @contractspec/lib.contracts@1.59.0
|
|
15
|
+
|
|
3
16
|
## 1.12.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/lib.example-shared-ui",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": "./src/index.ts",
|
|
@@ -227,9 +227,9 @@
|
|
|
227
227
|
},
|
|
228
228
|
"dependencies": {
|
|
229
229
|
"@apollo/client": "^4.1.4",
|
|
230
|
-
"@contractspec/lib.contracts": "1.
|
|
231
|
-
"@contractspec/lib.design-system": "1.
|
|
232
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
230
|
+
"@contractspec/lib.contracts": "1.59.0",
|
|
231
|
+
"@contractspec/lib.design-system": "1.59.0",
|
|
232
|
+
"@contractspec/lib.ui-kit-web": "1.59.0",
|
|
233
233
|
"@tanstack/react-query": "^5.90.16",
|
|
234
234
|
"framer-motion": "^12.33.0",
|
|
235
235
|
"lucide-react": "^0.563.0",
|
|
@@ -237,12 +237,12 @@
|
|
|
237
237
|
"react-dom": "19.2.4"
|
|
238
238
|
},
|
|
239
239
|
"devDependencies": {
|
|
240
|
-
"@contractspec/tool.typescript": "1.
|
|
240
|
+
"@contractspec/tool.typescript": "1.59.0",
|
|
241
241
|
"@types/react": "^19.2.13",
|
|
242
242
|
"@types/react-dom": "^19.2.2",
|
|
243
243
|
"eslint": "^9.39.2",
|
|
244
244
|
"typescript": "^5.9.3",
|
|
245
|
-
"@contractspec/tool.bun": "1.
|
|
245
|
+
"@contractspec/tool.bun": "1.58.0"
|
|
246
246
|
},
|
|
247
247
|
"types": "./dist/index.d.ts"
|
|
248
248
|
}
|