@contractspec/example.learning-journey-registry 3.6.0 → 3.7.1
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 +1 -1
- package/CHANGELOG.md +41 -0
- package/package.json +35 -77
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=12 noBundle=false
|
|
6
|
-
Bundled 12 modules in
|
|
6
|
+
Bundled 12 modules in 5ms
|
|
7
7
|
|
|
8
8
|
./api-types.js 8 bytes (entry point)
|
|
9
9
|
./index.js 18.19 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @contractspec/example.learning-journey-registry
|
|
2
2
|
|
|
3
|
+
## 3.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5eb8626: fix: package exports
|
|
8
|
+
- Updated dependencies [5eb8626]
|
|
9
|
+
- @contractspec/example.learning-journey-studio-onboarding@3.7.1
|
|
10
|
+
- @contractspec/example.learning-journey-quest-challenges@3.7.1
|
|
11
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.7.1
|
|
12
|
+
- @contractspec/example.learning-journey-ambient-coach@3.7.1
|
|
13
|
+
- @contractspec/example.learning-journey-platform-tour@3.7.1
|
|
14
|
+
- @contractspec/example.learning-journey-ui-onboarding@3.7.1
|
|
15
|
+
- @contractspec/example.learning-journey-ui-coaching@3.7.1
|
|
16
|
+
- @contractspec/example.learning-journey-ui-gamified@3.7.1
|
|
17
|
+
- @contractspec/example.learning-journey-duo-drills@3.7.1
|
|
18
|
+
- @contractspec/example.learning-journey-ui-shared@3.7.1
|
|
19
|
+
- @contractspec/module.learning-journey@3.7.1
|
|
20
|
+
- @contractspec/lib.contracts-spec@3.7.1
|
|
21
|
+
|
|
22
|
+
## 3.7.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- f88df2d: feat: add expo mobile app example
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [f88df2d]
|
|
31
|
+
- @contractspec/example.learning-journey-studio-onboarding@3.7.0
|
|
32
|
+
- @contractspec/example.learning-journey-quest-challenges@3.7.0
|
|
33
|
+
- @contractspec/example.learning-journey-crm-onboarding@3.7.0
|
|
34
|
+
- @contractspec/example.learning-journey-ambient-coach@3.7.0
|
|
35
|
+
- @contractspec/example.learning-journey-platform-tour@3.7.0
|
|
36
|
+
- @contractspec/example.learning-journey-ui-onboarding@3.7.0
|
|
37
|
+
- @contractspec/example.learning-journey-ui-coaching@3.7.0
|
|
38
|
+
- @contractspec/example.learning-journey-ui-gamified@3.7.0
|
|
39
|
+
- @contractspec/example.learning-journey-duo-drills@3.7.0
|
|
40
|
+
- @contractspec/example.learning-journey-ui-shared@3.7.0
|
|
41
|
+
- @contractspec/module.learning-journey@3.7.0
|
|
42
|
+
- @contractspec/lib.contracts-spec@3.7.0
|
|
43
|
+
|
|
3
44
|
## 3.6.0
|
|
4
45
|
|
|
5
46
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,113 +1,92 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.learning-journey-registry",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.1",
|
|
4
4
|
"description": "Registry that aggregates learning journey example tracks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
+
"browser": "./dist/browser/index.js",
|
|
10
11
|
"bun": "./dist/index.js",
|
|
11
12
|
"node": "./dist/node/index.js",
|
|
12
|
-
"browser": "./dist/browser/index.js",
|
|
13
13
|
"default": "./dist/index.js"
|
|
14
14
|
},
|
|
15
15
|
"./api": {
|
|
16
16
|
"types": "./dist/api.d.ts",
|
|
17
|
+
"browser": "./dist/browser/api.js",
|
|
17
18
|
"bun": "./dist/api.js",
|
|
18
19
|
"node": "./dist/node/api.js",
|
|
19
|
-
"browser": "./dist/browser/api.js",
|
|
20
20
|
"default": "./dist/api.js"
|
|
21
21
|
},
|
|
22
22
|
"./api-types": {
|
|
23
23
|
"types": "./dist/api-types.d.ts",
|
|
24
|
+
"browser": "./dist/browser/api-types.js",
|
|
24
25
|
"bun": "./dist/api-types.js",
|
|
25
26
|
"node": "./dist/node/api-types.js",
|
|
26
|
-
"browser": "./dist/browser/api-types.js",
|
|
27
27
|
"default": "./dist/api-types.js"
|
|
28
28
|
},
|
|
29
29
|
"./docs": {
|
|
30
30
|
"types": "./dist/docs/index.d.ts",
|
|
31
|
-
"bun": "./dist/docs/index.js",
|
|
32
|
-
"node": "./dist/node/docs/index.js",
|
|
33
31
|
"browser": "./dist/browser/docs/index.js",
|
|
34
|
-
"default": "./dist/docs/index.js"
|
|
35
|
-
},
|
|
36
|
-
"./docs/index": {
|
|
37
|
-
"types": "./dist/docs/index.d.ts",
|
|
38
32
|
"bun": "./dist/docs/index.js",
|
|
39
33
|
"node": "./dist/node/docs/index.js",
|
|
40
|
-
"browser": "./dist/browser/docs/index.js",
|
|
41
34
|
"default": "./dist/docs/index.js"
|
|
42
35
|
},
|
|
43
36
|
"./docs/learning-journey-registry.docblock": {
|
|
44
37
|
"types": "./dist/docs/learning-journey-registry.docblock.d.ts",
|
|
38
|
+
"browser": "./dist/browser/docs/learning-journey-registry.docblock.js",
|
|
45
39
|
"bun": "./dist/docs/learning-journey-registry.docblock.js",
|
|
46
40
|
"node": "./dist/node/docs/learning-journey-registry.docblock.js",
|
|
47
|
-
"browser": "./dist/browser/docs/learning-journey-registry.docblock.js",
|
|
48
41
|
"default": "./dist/docs/learning-journey-registry.docblock.js"
|
|
49
42
|
},
|
|
50
43
|
"./example": {
|
|
51
44
|
"types": "./dist/example.d.ts",
|
|
45
|
+
"browser": "./dist/browser/example.js",
|
|
52
46
|
"bun": "./dist/example.js",
|
|
53
47
|
"node": "./dist/node/example.js",
|
|
54
|
-
"browser": "./dist/browser/example.js",
|
|
55
48
|
"default": "./dist/example.js"
|
|
56
49
|
},
|
|
57
50
|
"./learning-journey-registry.feature": {
|
|
58
51
|
"types": "./dist/learning-journey-registry.feature.d.ts",
|
|
52
|
+
"browser": "./dist/browser/learning-journey-registry.feature.js",
|
|
59
53
|
"bun": "./dist/learning-journey-registry.feature.js",
|
|
60
54
|
"node": "./dist/node/learning-journey-registry.feature.js",
|
|
61
|
-
"browser": "./dist/browser/learning-journey-registry.feature.js",
|
|
62
55
|
"default": "./dist/learning-journey-registry.feature.js"
|
|
63
56
|
},
|
|
64
57
|
"./presentations": {
|
|
65
58
|
"types": "./dist/presentations/index.d.ts",
|
|
66
|
-
"bun": "./dist/presentations/index.js",
|
|
67
|
-
"node": "./dist/node/presentations/index.js",
|
|
68
59
|
"browser": "./dist/browser/presentations/index.js",
|
|
69
|
-
"default": "./dist/presentations/index.js"
|
|
70
|
-
},
|
|
71
|
-
"./presentations/index": {
|
|
72
|
-
"types": "./dist/presentations/index.d.ts",
|
|
73
60
|
"bun": "./dist/presentations/index.js",
|
|
74
61
|
"node": "./dist/node/presentations/index.js",
|
|
75
|
-
"browser": "./dist/browser/presentations/index.js",
|
|
76
62
|
"default": "./dist/presentations/index.js"
|
|
77
63
|
},
|
|
78
64
|
"./progress-store": {
|
|
79
65
|
"types": "./dist/progress-store.d.ts",
|
|
66
|
+
"browser": "./dist/browser/progress-store.js",
|
|
80
67
|
"bun": "./dist/progress-store.js",
|
|
81
68
|
"node": "./dist/node/progress-store.js",
|
|
82
|
-
"browser": "./dist/browser/progress-store.js",
|
|
83
69
|
"default": "./dist/progress-store.js"
|
|
84
70
|
},
|
|
85
71
|
"./tracks": {
|
|
86
72
|
"types": "./dist/tracks.d.ts",
|
|
73
|
+
"browser": "./dist/browser/tracks.js",
|
|
87
74
|
"bun": "./dist/tracks.js",
|
|
88
75
|
"node": "./dist/node/tracks.js",
|
|
89
|
-
"browser": "./dist/browser/tracks.js",
|
|
90
76
|
"default": "./dist/tracks.js"
|
|
91
77
|
},
|
|
92
78
|
"./ui": {
|
|
93
79
|
"types": "./dist/ui/index.d.ts",
|
|
94
|
-
"bun": "./dist/ui/index.js",
|
|
95
|
-
"node": "./dist/node/ui/index.js",
|
|
96
80
|
"browser": "./dist/browser/ui/index.js",
|
|
97
|
-
"default": "./dist/ui/index.js"
|
|
98
|
-
},
|
|
99
|
-
"./ui/index": {
|
|
100
|
-
"types": "./dist/ui/index.d.ts",
|
|
101
81
|
"bun": "./dist/ui/index.js",
|
|
102
82
|
"node": "./dist/node/ui/index.js",
|
|
103
|
-
"browser": "./dist/browser/ui/index.js",
|
|
104
83
|
"default": "./dist/ui/index.js"
|
|
105
84
|
},
|
|
106
85
|
"./ui/LearningMiniApp": {
|
|
107
86
|
"types": "./dist/ui/LearningMiniApp.d.ts",
|
|
87
|
+
"browser": "./dist/browser/ui/LearningMiniApp.js",
|
|
108
88
|
"bun": "./dist/ui/LearningMiniApp.js",
|
|
109
89
|
"node": "./dist/node/ui/LearningMiniApp.js",
|
|
110
|
-
"browser": "./dist/browser/ui/LearningMiniApp.js",
|
|
111
90
|
"default": "./dist/ui/LearningMiniApp.js"
|
|
112
91
|
}
|
|
113
92
|
},
|
|
@@ -127,134 +106,113 @@
|
|
|
127
106
|
"typecheck": "tsc --noEmit"
|
|
128
107
|
},
|
|
129
108
|
"dependencies": {
|
|
130
|
-
"@contractspec/lib.contracts-spec": "3.
|
|
131
|
-
"@contractspec/example.learning-journey-ambient-coach": "3.
|
|
132
|
-
"@contractspec/example.learning-journey-duo-drills": "3.
|
|
133
|
-
"@contractspec/example.learning-journey-crm-onboarding": "3.
|
|
134
|
-
"@contractspec/example.learning-journey-platform-tour": "3.
|
|
135
|
-
"@contractspec/example.learning-journey-quest-challenges": "3.
|
|
136
|
-
"@contractspec/example.learning-journey-studio-onboarding": "3.
|
|
137
|
-
"@contractspec/example.learning-journey-ui-shared": "3.
|
|
138
|
-
"@contractspec/example.learning-journey-ui-gamified": "3.
|
|
139
|
-
"@contractspec/example.learning-journey-ui-onboarding": "3.
|
|
140
|
-
"@contractspec/example.learning-journey-ui-coaching": "3.
|
|
141
|
-
"@contractspec/module.learning-journey": "3.
|
|
142
|
-
"react": "19.2.
|
|
109
|
+
"@contractspec/lib.contracts-spec": "3.7.1",
|
|
110
|
+
"@contractspec/example.learning-journey-ambient-coach": "3.7.1",
|
|
111
|
+
"@contractspec/example.learning-journey-duo-drills": "3.7.1",
|
|
112
|
+
"@contractspec/example.learning-journey-crm-onboarding": "3.7.1",
|
|
113
|
+
"@contractspec/example.learning-journey-platform-tour": "3.7.1",
|
|
114
|
+
"@contractspec/example.learning-journey-quest-challenges": "3.7.1",
|
|
115
|
+
"@contractspec/example.learning-journey-studio-onboarding": "3.7.1",
|
|
116
|
+
"@contractspec/example.learning-journey-ui-shared": "3.7.1",
|
|
117
|
+
"@contractspec/example.learning-journey-ui-gamified": "3.7.1",
|
|
118
|
+
"@contractspec/example.learning-journey-ui-onboarding": "3.7.1",
|
|
119
|
+
"@contractspec/example.learning-journey-ui-coaching": "3.7.1",
|
|
120
|
+
"@contractspec/module.learning-journey": "3.7.1",
|
|
121
|
+
"react": "19.2.0"
|
|
143
122
|
},
|
|
144
123
|
"devDependencies": {
|
|
145
|
-
"@contractspec/tool.typescript": "3.
|
|
124
|
+
"@contractspec/tool.typescript": "3.7.1",
|
|
146
125
|
"@types/react": "^19.2.14",
|
|
147
126
|
"typescript": "^5.9.3",
|
|
148
|
-
"@contractspec/tool.bun": "3.
|
|
127
|
+
"@contractspec/tool.bun": "3.7.1"
|
|
149
128
|
},
|
|
150
129
|
"peerDependencies": {
|
|
151
|
-
"react": "^19.2.
|
|
130
|
+
"react": "^19.2.0"
|
|
152
131
|
},
|
|
153
132
|
"publishConfig": {
|
|
154
133
|
"exports": {
|
|
155
134
|
".": {
|
|
156
135
|
"types": "./dist/index.d.ts",
|
|
136
|
+
"browser": "./dist/browser/index.js",
|
|
157
137
|
"bun": "./dist/index.js",
|
|
158
138
|
"node": "./dist/node/index.js",
|
|
159
|
-
"browser": "./dist/browser/index.js",
|
|
160
139
|
"default": "./dist/index.js"
|
|
161
140
|
},
|
|
162
141
|
"./api": {
|
|
163
142
|
"types": "./dist/api.d.ts",
|
|
143
|
+
"browser": "./dist/browser/api.js",
|
|
164
144
|
"bun": "./dist/api.js",
|
|
165
145
|
"node": "./dist/node/api.js",
|
|
166
|
-
"browser": "./dist/browser/api.js",
|
|
167
146
|
"default": "./dist/api.js"
|
|
168
147
|
},
|
|
169
148
|
"./api-types": {
|
|
170
149
|
"types": "./dist/api-types.d.ts",
|
|
150
|
+
"browser": "./dist/browser/api-types.js",
|
|
171
151
|
"bun": "./dist/api-types.js",
|
|
172
152
|
"node": "./dist/node/api-types.js",
|
|
173
|
-
"browser": "./dist/browser/api-types.js",
|
|
174
153
|
"default": "./dist/api-types.js"
|
|
175
154
|
},
|
|
176
155
|
"./docs": {
|
|
177
156
|
"types": "./dist/docs/index.d.ts",
|
|
178
|
-
"bun": "./dist/docs/index.js",
|
|
179
|
-
"node": "./dist/node/docs/index.js",
|
|
180
157
|
"browser": "./dist/browser/docs/index.js",
|
|
181
|
-
"default": "./dist/docs/index.js"
|
|
182
|
-
},
|
|
183
|
-
"./docs/index": {
|
|
184
|
-
"types": "./dist/docs/index.d.ts",
|
|
185
158
|
"bun": "./dist/docs/index.js",
|
|
186
159
|
"node": "./dist/node/docs/index.js",
|
|
187
|
-
"browser": "./dist/browser/docs/index.js",
|
|
188
160
|
"default": "./dist/docs/index.js"
|
|
189
161
|
},
|
|
190
162
|
"./docs/learning-journey-registry.docblock": {
|
|
191
163
|
"types": "./dist/docs/learning-journey-registry.docblock.d.ts",
|
|
164
|
+
"browser": "./dist/browser/docs/learning-journey-registry.docblock.js",
|
|
192
165
|
"bun": "./dist/docs/learning-journey-registry.docblock.js",
|
|
193
166
|
"node": "./dist/node/docs/learning-journey-registry.docblock.js",
|
|
194
|
-
"browser": "./dist/browser/docs/learning-journey-registry.docblock.js",
|
|
195
167
|
"default": "./dist/docs/learning-journey-registry.docblock.js"
|
|
196
168
|
},
|
|
197
169
|
"./example": {
|
|
198
170
|
"types": "./dist/example.d.ts",
|
|
171
|
+
"browser": "./dist/browser/example.js",
|
|
199
172
|
"bun": "./dist/example.js",
|
|
200
173
|
"node": "./dist/node/example.js",
|
|
201
|
-
"browser": "./dist/browser/example.js",
|
|
202
174
|
"default": "./dist/example.js"
|
|
203
175
|
},
|
|
204
176
|
"./learning-journey-registry.feature": {
|
|
205
177
|
"types": "./dist/learning-journey-registry.feature.d.ts",
|
|
178
|
+
"browser": "./dist/browser/learning-journey-registry.feature.js",
|
|
206
179
|
"bun": "./dist/learning-journey-registry.feature.js",
|
|
207
180
|
"node": "./dist/node/learning-journey-registry.feature.js",
|
|
208
|
-
"browser": "./dist/browser/learning-journey-registry.feature.js",
|
|
209
181
|
"default": "./dist/learning-journey-registry.feature.js"
|
|
210
182
|
},
|
|
211
183
|
"./presentations": {
|
|
212
184
|
"types": "./dist/presentations/index.d.ts",
|
|
213
|
-
"bun": "./dist/presentations/index.js",
|
|
214
|
-
"node": "./dist/node/presentations/index.js",
|
|
215
185
|
"browser": "./dist/browser/presentations/index.js",
|
|
216
|
-
"default": "./dist/presentations/index.js"
|
|
217
|
-
},
|
|
218
|
-
"./presentations/index": {
|
|
219
|
-
"types": "./dist/presentations/index.d.ts",
|
|
220
186
|
"bun": "./dist/presentations/index.js",
|
|
221
187
|
"node": "./dist/node/presentations/index.js",
|
|
222
|
-
"browser": "./dist/browser/presentations/index.js",
|
|
223
188
|
"default": "./dist/presentations/index.js"
|
|
224
189
|
},
|
|
225
190
|
"./progress-store": {
|
|
226
191
|
"types": "./dist/progress-store.d.ts",
|
|
192
|
+
"browser": "./dist/browser/progress-store.js",
|
|
227
193
|
"bun": "./dist/progress-store.js",
|
|
228
194
|
"node": "./dist/node/progress-store.js",
|
|
229
|
-
"browser": "./dist/browser/progress-store.js",
|
|
230
195
|
"default": "./dist/progress-store.js"
|
|
231
196
|
},
|
|
232
197
|
"./tracks": {
|
|
233
198
|
"types": "./dist/tracks.d.ts",
|
|
199
|
+
"browser": "./dist/browser/tracks.js",
|
|
234
200
|
"bun": "./dist/tracks.js",
|
|
235
201
|
"node": "./dist/node/tracks.js",
|
|
236
|
-
"browser": "./dist/browser/tracks.js",
|
|
237
202
|
"default": "./dist/tracks.js"
|
|
238
203
|
},
|
|
239
204
|
"./ui": {
|
|
240
205
|
"types": "./dist/ui/index.d.ts",
|
|
241
|
-
"bun": "./dist/ui/index.js",
|
|
242
|
-
"node": "./dist/node/ui/index.js",
|
|
243
206
|
"browser": "./dist/browser/ui/index.js",
|
|
244
|
-
"default": "./dist/ui/index.js"
|
|
245
|
-
},
|
|
246
|
-
"./ui/index": {
|
|
247
|
-
"types": "./dist/ui/index.d.ts",
|
|
248
207
|
"bun": "./dist/ui/index.js",
|
|
249
208
|
"node": "./dist/node/ui/index.js",
|
|
250
|
-
"browser": "./dist/browser/ui/index.js",
|
|
251
209
|
"default": "./dist/ui/index.js"
|
|
252
210
|
},
|
|
253
211
|
"./ui/LearningMiniApp": {
|
|
254
212
|
"types": "./dist/ui/LearningMiniApp.d.ts",
|
|
213
|
+
"browser": "./dist/browser/ui/LearningMiniApp.js",
|
|
255
214
|
"bun": "./dist/ui/LearningMiniApp.js",
|
|
256
215
|
"node": "./dist/node/ui/LearningMiniApp.js",
|
|
257
|
-
"browser": "./dist/browser/ui/LearningMiniApp.js",
|
|
258
216
|
"default": "./dist/ui/LearningMiniApp.js"
|
|
259
217
|
}
|
|
260
218
|
},
|