@contractspec/example.learning-journey-ui-coaching 1.58.0 → 1.59.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 +17 -0
- package/package.json +10 -10
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=14
|
|
6
|
-
Bundled 14 modules in
|
|
6
|
+
Bundled 14 modules in 11ms
|
|
7
7
|
|
|
8
8
|
./CoachingMiniApp.js 44.47 KB (entry point)
|
|
9
9
|
./index.js 46.24 KB (entry point)
|
|
@@ -21,7 +21,7 @@ Bundled 14 modules in 18ms
|
|
|
21
21
|
./example.js 0.93 KB (entry point)
|
|
22
22
|
|
|
23
23
|
[contractspec-bun-build] transpile target=node root=src entries=14
|
|
24
|
-
Bundled 14 modules in
|
|
24
|
+
Bundled 14 modules in 19ms
|
|
25
25
|
|
|
26
26
|
./CoachingMiniApp.js 44.44 KB (entry point)
|
|
27
27
|
./index.js 46.20 KB (entry point)
|
|
@@ -39,7 +39,7 @@ Bundled 14 modules in 11ms
|
|
|
39
39
|
./example.js 0.92 KB (entry point)
|
|
40
40
|
|
|
41
41
|
[contractspec-bun-build] transpile target=browser root=src entries=14
|
|
42
|
-
Bundled 14 modules in
|
|
42
|
+
Bundled 14 modules in 9ms
|
|
43
43
|
|
|
44
44
|
./CoachingMiniApp.js 44.44 KB (entry point)
|
|
45
45
|
./index.js 46.20 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @contractspec/example.learning-journey-ui-coaching
|
|
2
2
|
|
|
3
|
+
## 1.59.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/example.learning-journey-crm-onboarding@1.59.0
|
|
13
|
+
- @contractspec/example.learning-journey-ambient-coach@1.59.0
|
|
14
|
+
- @contractspec/example.learning-journey-ui-shared@1.59.0
|
|
15
|
+
- @contractspec/module.learning-journey@1.59.0
|
|
16
|
+
- @contractspec/lib.design-system@1.59.0
|
|
17
|
+
- @contractspec/lib.ui-kit-web@1.59.0
|
|
18
|
+
- @contractspec/lib.contracts@1.59.0
|
|
19
|
+
|
|
3
20
|
## 1.58.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.learning-journey-ui-coaching",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.59.0",
|
|
4
4
|
"description": "Contextual coaching UI with tip cards and engagement tracking.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -39,20 +39,20 @@
|
|
|
39
39
|
"typecheck": "tsc --noEmit"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@contractspec/lib.contracts": "1.
|
|
43
|
-
"@contractspec/example.learning-journey-ui-shared": "1.
|
|
44
|
-
"@contractspec/example.learning-journey-ambient-coach": "1.
|
|
45
|
-
"@contractspec/example.learning-journey-crm-onboarding": "1.
|
|
46
|
-
"@contractspec/module.learning-journey": "1.
|
|
47
|
-
"@contractspec/lib.design-system": "1.
|
|
48
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
42
|
+
"@contractspec/lib.contracts": "1.59.0",
|
|
43
|
+
"@contractspec/example.learning-journey-ui-shared": "1.59.0",
|
|
44
|
+
"@contractspec/example.learning-journey-ambient-coach": "1.59.0",
|
|
45
|
+
"@contractspec/example.learning-journey-crm-onboarding": "1.59.0",
|
|
46
|
+
"@contractspec/module.learning-journey": "1.59.0",
|
|
47
|
+
"@contractspec/lib.design-system": "1.59.0",
|
|
48
|
+
"@contractspec/lib.ui-kit-web": "1.59.0",
|
|
49
49
|
"react": "19.2.4"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@contractspec/tool.typescript": "1.
|
|
52
|
+
"@contractspec/tool.typescript": "1.59.0",
|
|
53
53
|
"@types/react": "^19.2.13",
|
|
54
54
|
"typescript": "^5.9.3",
|
|
55
|
-
"@contractspec/tool.bun": "1.
|
|
55
|
+
"@contractspec/tool.bun": "1.58.0"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"react": "^19.2.4"
|