@contractspec/example.learning-journey-ui-gamified 1.58.0 → 1.60.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=14
6
- Bundled 14 modules in 25ms
6
+ Bundled 14 modules in 29ms
7
7
 
8
8
  ./GamifiedMiniApp.js 43.40 KB (entry point)
9
9
  ./index.js 45.19 KB (entry point)
@@ -21,7 +21,7 @@ Bundled 14 modules in 25ms
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 28ms
24
+ Bundled 14 modules in 39ms
25
25
 
26
26
  ./GamifiedMiniApp.js 43.37 KB (entry point)
27
27
  ./index.js 45.15 KB (entry point)
@@ -39,7 +39,7 @@ Bundled 14 modules in 28ms
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 15ms
42
+ Bundled 14 modules in 39ms
43
43
 
44
44
  ./GamifiedMiniApp.js 43.37 KB (entry point)
45
45
  ./index.js 45.15 KB (entry point)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @contractspec/example.learning-journey-ui-gamified
2
2
 
3
+ ## 1.60.0
4
+
5
+ ### Minor Changes
6
+
7
+ - fix: publish with bun
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @contractspec/example.learning-journey-quest-challenges@1.60.0
13
+ - @contractspec/example.learning-journey-duo-drills@1.60.0
14
+ - @contractspec/example.learning-journey-ui-shared@1.60.0
15
+ - @contractspec/module.learning-journey@1.60.0
16
+ - @contractspec/lib.design-system@1.60.0
17
+ - @contractspec/lib.ui-kit-web@1.60.0
18
+ - @contractspec/lib.contracts@1.60.0
19
+
20
+ ## 1.59.0
21
+
22
+ ### Minor Changes
23
+
24
+ - 1a0cf44: fix: publishConfig not supported by bun
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [1a0cf44]
29
+ - @contractspec/example.learning-journey-quest-challenges@1.59.0
30
+ - @contractspec/example.learning-journey-duo-drills@1.59.0
31
+ - @contractspec/example.learning-journey-ui-shared@1.59.0
32
+ - @contractspec/module.learning-journey@1.59.0
33
+ - @contractspec/lib.design-system@1.59.0
34
+ - @contractspec/lib.ui-kit-web@1.59.0
35
+ - @contractspec/lib.contracts@1.59.0
36
+
3
37
  ## 1.58.0
4
38
 
5
39
  ### Minor Changes
package/package.json CHANGED
@@ -1,27 +1,129 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-ui-gamified",
3
- "version": "1.58.0",
3
+ "version": "1.60.0",
4
4
  "description": "Duolingo-style gamified learning UI for drills and quests.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
8
- ".": "./src/index.ts",
9
- "./components": "./src/components/index.ts",
10
- "./components/DayCalendar": "./src/components/DayCalendar.tsx",
11
- "./components/FlashCard": "./src/components/FlashCard.tsx",
12
- "./components/index": "./src/components/index.ts",
13
- "./components/MasteryRing": "./src/components/MasteryRing.tsx",
14
- "./docs": "./src/docs/index.ts",
15
- "./docs/index": "./src/docs/index.ts",
16
- "./docs/learning-journey-ui-gamified.docblock": "./src/docs/learning-journey-ui-gamified.docblock.ts",
17
- "./example": "./src/example.ts",
18
- "./GamifiedMiniApp": "./src/GamifiedMiniApp.tsx",
19
- "./views": "./src/views/index.ts",
20
- "./views/index": "./src/views/index.ts",
21
- "./views/Overview": "./src/views/Overview.tsx",
22
- "./views/Progress": "./src/views/Progress.tsx",
23
- "./views/Steps": "./src/views/Steps.tsx",
24
- "./views/Timeline": "./src/views/Timeline.tsx"
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "bun": "./dist/index.js",
11
+ "node": "./dist/node/index.mjs",
12
+ "browser": "./dist/browser/index.js",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./components": {
16
+ "types": "./dist/components/index.d.ts",
17
+ "bun": "./dist/components/index.js",
18
+ "node": "./dist/node/components/index.mjs",
19
+ "browser": "./dist/browser/components/index.js",
20
+ "default": "./dist/components/index.js"
21
+ },
22
+ "./components/DayCalendar": {
23
+ "types": "./dist/components/DayCalendar.d.ts",
24
+ "bun": "./dist/components/DayCalendar.js",
25
+ "node": "./dist/node/components/DayCalendar.mjs",
26
+ "browser": "./dist/browser/components/DayCalendar.js",
27
+ "default": "./dist/components/DayCalendar.js"
28
+ },
29
+ "./components/FlashCard": {
30
+ "types": "./dist/components/FlashCard.d.ts",
31
+ "bun": "./dist/components/FlashCard.js",
32
+ "node": "./dist/node/components/FlashCard.mjs",
33
+ "browser": "./dist/browser/components/FlashCard.js",
34
+ "default": "./dist/components/FlashCard.js"
35
+ },
36
+ "./components/index": {
37
+ "types": "./dist/components/index.d.ts",
38
+ "bun": "./dist/components/index.js",
39
+ "node": "./dist/node/components/index.mjs",
40
+ "browser": "./dist/browser/components/index.js",
41
+ "default": "./dist/components/index.js"
42
+ },
43
+ "./components/MasteryRing": {
44
+ "types": "./dist/components/MasteryRing.d.ts",
45
+ "bun": "./dist/components/MasteryRing.js",
46
+ "node": "./dist/node/components/MasteryRing.mjs",
47
+ "browser": "./dist/browser/components/MasteryRing.js",
48
+ "default": "./dist/components/MasteryRing.js"
49
+ },
50
+ "./docs": {
51
+ "types": "./dist/docs/index.d.ts",
52
+ "bun": "./dist/docs/index.js",
53
+ "node": "./dist/node/docs/index.mjs",
54
+ "browser": "./dist/browser/docs/index.js",
55
+ "default": "./dist/docs/index.js"
56
+ },
57
+ "./docs/index": {
58
+ "types": "./dist/docs/index.d.ts",
59
+ "bun": "./dist/docs/index.js",
60
+ "node": "./dist/node/docs/index.mjs",
61
+ "browser": "./dist/browser/docs/index.js",
62
+ "default": "./dist/docs/index.js"
63
+ },
64
+ "./docs/learning-journey-ui-gamified.docblock": {
65
+ "types": "./dist/docs/learning-journey-ui-gamified.docblock.d.ts",
66
+ "bun": "./dist/docs/learning-journey-ui-gamified.docblock.js",
67
+ "node": "./dist/node/docs/learning-journey-ui-gamified.docblock.mjs",
68
+ "browser": "./dist/browser/docs/learning-journey-ui-gamified.docblock.js",
69
+ "default": "./dist/docs/learning-journey-ui-gamified.docblock.js"
70
+ },
71
+ "./example": {
72
+ "types": "./dist/example.d.ts",
73
+ "bun": "./dist/example.js",
74
+ "node": "./dist/node/example.mjs",
75
+ "browser": "./dist/browser/example.js",
76
+ "default": "./dist/example.js"
77
+ },
78
+ "./GamifiedMiniApp": {
79
+ "types": "./dist/GamifiedMiniApp.d.ts",
80
+ "bun": "./dist/GamifiedMiniApp.js",
81
+ "node": "./dist/node/GamifiedMiniApp.mjs",
82
+ "browser": "./dist/browser/GamifiedMiniApp.js",
83
+ "default": "./dist/GamifiedMiniApp.js"
84
+ },
85
+ "./views": {
86
+ "types": "./dist/views/index.d.ts",
87
+ "bun": "./dist/views/index.js",
88
+ "node": "./dist/node/views/index.mjs",
89
+ "browser": "./dist/browser/views/index.js",
90
+ "default": "./dist/views/index.js"
91
+ },
92
+ "./views/index": {
93
+ "types": "./dist/views/index.d.ts",
94
+ "bun": "./dist/views/index.js",
95
+ "node": "./dist/node/views/index.mjs",
96
+ "browser": "./dist/browser/views/index.js",
97
+ "default": "./dist/views/index.js"
98
+ },
99
+ "./views/Overview": {
100
+ "types": "./dist/views/Overview.d.ts",
101
+ "bun": "./dist/views/Overview.js",
102
+ "node": "./dist/node/views/Overview.mjs",
103
+ "browser": "./dist/browser/views/Overview.js",
104
+ "default": "./dist/views/Overview.js"
105
+ },
106
+ "./views/Progress": {
107
+ "types": "./dist/views/Progress.d.ts",
108
+ "bun": "./dist/views/Progress.js",
109
+ "node": "./dist/node/views/Progress.mjs",
110
+ "browser": "./dist/browser/views/Progress.js",
111
+ "default": "./dist/views/Progress.js"
112
+ },
113
+ "./views/Steps": {
114
+ "types": "./dist/views/Steps.d.ts",
115
+ "bun": "./dist/views/Steps.js",
116
+ "node": "./dist/node/views/Steps.mjs",
117
+ "browser": "./dist/browser/views/Steps.js",
118
+ "default": "./dist/views/Steps.js"
119
+ },
120
+ "./views/Timeline": {
121
+ "types": "./dist/views/Timeline.d.ts",
122
+ "bun": "./dist/views/Timeline.js",
123
+ "node": "./dist/node/views/Timeline.mjs",
124
+ "browser": "./dist/browser/views/Timeline.js",
125
+ "default": "./dist/views/Timeline.js"
126
+ }
25
127
  },
26
128
  "scripts": {
27
129
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -39,20 +141,20 @@
39
141
  "typecheck": "tsc --noEmit"
40
142
  },
41
143
  "dependencies": {
42
- "@contractspec/lib.contracts": "1.58.0",
43
- "@contractspec/example.learning-journey-ui-shared": "1.58.0",
44
- "@contractspec/example.learning-journey-duo-drills": "1.58.0",
45
- "@contractspec/example.learning-journey-quest-challenges": "1.58.0",
46
- "@contractspec/module.learning-journey": "1.58.0",
47
- "@contractspec/lib.design-system": "1.58.0",
48
- "@contractspec/lib.ui-kit-web": "1.58.0",
144
+ "@contractspec/lib.contracts": "1.60.0",
145
+ "@contractspec/example.learning-journey-ui-shared": "1.60.0",
146
+ "@contractspec/example.learning-journey-duo-drills": "1.60.0",
147
+ "@contractspec/example.learning-journey-quest-challenges": "1.60.0",
148
+ "@contractspec/module.learning-journey": "1.60.0",
149
+ "@contractspec/lib.design-system": "1.60.0",
150
+ "@contractspec/lib.ui-kit-web": "1.60.0",
49
151
  "react": "19.2.4"
50
152
  },
51
153
  "devDependencies": {
52
- "@contractspec/tool.typescript": "1.58.0",
154
+ "@contractspec/tool.typescript": "1.60.0",
53
155
  "@types/react": "^19.2.13",
54
156
  "typescript": "^5.9.3",
55
- "@contractspec/tool.bun": "1.57.0"
157
+ "@contractspec/tool.bun": "1.59.0"
56
158
  },
57
159
  "peerDependencies": {
58
160
  "react": "^19.2.4"