@contractspec/example.learning-journey-studio-onboarding 1.59.0 → 1.61.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=10
6
- Bundled 10 modules in 18ms
6
+ Bundled 10 modules in 25ms
7
7
 
8
8
  docs/index.js 1.71 KB (entry point)
9
9
  tests/operations.test-spec.js 0.92 KB (entry point)
@@ -17,7 +17,7 @@ Bundled 10 modules in 18ms
17
17
  ./track.js 2.58 KB (entry point)
18
18
 
19
19
  [contractspec-bun-build] transpile target=node root=src entries=10
20
- Bundled 10 modules in 36ms
20
+ Bundled 10 modules in 67ms
21
21
 
22
22
  docs/index.js 1.67 KB (entry point)
23
23
  tests/operations.test-spec.js 0.91 KB (entry point)
@@ -31,7 +31,7 @@ Bundled 10 modules in 36ms
31
31
  ./track.js 2.58 KB (entry point)
32
32
 
33
33
  [contractspec-bun-build] transpile target=browser root=src entries=10
34
- Bundled 10 modules in 32ms
34
+ Bundled 10 modules in 36ms
35
35
 
36
36
  docs/index.js 1.67 KB (entry point)
37
37
  tests/operations.test-spec.js 0.91 KB (entry point)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # @contractspec/example.learning-journey-studio-onboarding
2
2
 
3
+ ## 1.61.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 374fd71: fix: publishing
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [374fd71]
12
+ - @contractspec/module.learning-journey@1.61.0
13
+ - @contractspec/lib.contracts@1.61.0
14
+ - @contractspec/lib.schema@1.61.0
15
+
16
+ ## 1.60.0
17
+
18
+ ### Minor Changes
19
+
20
+ - fix: publish with bun
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @contractspec/module.learning-journey@1.60.0
26
+ - @contractspec/lib.contracts@1.60.0
27
+ - @contractspec/lib.schema@1.60.0
28
+
3
29
  ## 1.59.0
4
30
 
5
31
  ### Minor Changes
package/package.json CHANGED
@@ -1,23 +1,101 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-studio-onboarding",
3
- "version": "1.59.0",
3
+ "version": "1.61.0",
4
4
  "description": "Learning journey track for first 30 minutes in ContractSpec Studio.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
8
- ".": "./src/index.ts",
9
- "./docs": "./src/docs/index.ts",
10
- "./docs/index": "./src/docs/index.ts",
11
- "./docs/studio-onboarding.docblock": "./src/docs/studio-onboarding.docblock.ts",
12
- "./example": "./src/example.ts",
13
- "./handlers/demo.handlers": "./src/handlers/demo.handlers.ts",
14
- "./learning-journey-studio-onboarding.feature": "./src/learning-journey-studio-onboarding.feature.ts",
15
- "./operations": "./src/operations/index.ts",
16
- "./operations/index": "./src/operations/index.ts",
17
- "./presentations": "./src/presentations/index.ts",
18
- "./presentations/index": "./src/presentations/index.ts",
19
- "./tests/operations.test-spec": "./src/tests/operations.test-spec.ts",
20
- "./track": "./src/track.ts"
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "bun": "./dist/index.js",
11
+ "node": "./dist/node/index.js",
12
+ "browser": "./dist/browser/index.js",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./docs": {
16
+ "types": "./dist/docs/index.d.ts",
17
+ "bun": "./dist/docs/index.js",
18
+ "node": "./dist/node/docs/index.js",
19
+ "browser": "./dist/browser/docs/index.js",
20
+ "default": "./dist/docs/index.js"
21
+ },
22
+ "./docs/index": {
23
+ "types": "./dist/docs/index.d.ts",
24
+ "bun": "./dist/docs/index.js",
25
+ "node": "./dist/node/docs/index.js",
26
+ "browser": "./dist/browser/docs/index.js",
27
+ "default": "./dist/docs/index.js"
28
+ },
29
+ "./docs/studio-onboarding.docblock": {
30
+ "types": "./dist/docs/studio-onboarding.docblock.d.ts",
31
+ "bun": "./dist/docs/studio-onboarding.docblock.js",
32
+ "node": "./dist/node/docs/studio-onboarding.docblock.js",
33
+ "browser": "./dist/browser/docs/studio-onboarding.docblock.js",
34
+ "default": "./dist/docs/studio-onboarding.docblock.js"
35
+ },
36
+ "./example": {
37
+ "types": "./dist/example.d.ts",
38
+ "bun": "./dist/example.js",
39
+ "node": "./dist/node/example.js",
40
+ "browser": "./dist/browser/example.js",
41
+ "default": "./dist/example.js"
42
+ },
43
+ "./handlers/demo.handlers": {
44
+ "types": "./dist/handlers/demo.handlers.d.ts",
45
+ "bun": "./dist/handlers/demo.handlers.js",
46
+ "node": "./dist/node/handlers/demo.handlers.js",
47
+ "browser": "./dist/browser/handlers/demo.handlers.js",
48
+ "default": "./dist/handlers/demo.handlers.js"
49
+ },
50
+ "./learning-journey-studio-onboarding.feature": {
51
+ "types": "./dist/learning-journey-studio-onboarding.feature.d.ts",
52
+ "bun": "./dist/learning-journey-studio-onboarding.feature.js",
53
+ "node": "./dist/node/learning-journey-studio-onboarding.feature.js",
54
+ "browser": "./dist/browser/learning-journey-studio-onboarding.feature.js",
55
+ "default": "./dist/learning-journey-studio-onboarding.feature.js"
56
+ },
57
+ "./operations": {
58
+ "types": "./dist/operations/index.d.ts",
59
+ "bun": "./dist/operations/index.js",
60
+ "node": "./dist/node/operations/index.js",
61
+ "browser": "./dist/browser/operations/index.js",
62
+ "default": "./dist/operations/index.js"
63
+ },
64
+ "./operations/index": {
65
+ "types": "./dist/operations/index.d.ts",
66
+ "bun": "./dist/operations/index.js",
67
+ "node": "./dist/node/operations/index.js",
68
+ "browser": "./dist/browser/operations/index.js",
69
+ "default": "./dist/operations/index.js"
70
+ },
71
+ "./presentations": {
72
+ "types": "./dist/presentations/index.d.ts",
73
+ "bun": "./dist/presentations/index.js",
74
+ "node": "./dist/node/presentations/index.js",
75
+ "browser": "./dist/browser/presentations/index.js",
76
+ "default": "./dist/presentations/index.js"
77
+ },
78
+ "./presentations/index": {
79
+ "types": "./dist/presentations/index.d.ts",
80
+ "bun": "./dist/presentations/index.js",
81
+ "node": "./dist/node/presentations/index.js",
82
+ "browser": "./dist/browser/presentations/index.js",
83
+ "default": "./dist/presentations/index.js"
84
+ },
85
+ "./tests/operations.test-spec": {
86
+ "types": "./dist/tests/operations.test-spec.d.ts",
87
+ "bun": "./dist/tests/operations.test-spec.js",
88
+ "node": "./dist/node/tests/operations.test-spec.js",
89
+ "browser": "./dist/browser/tests/operations.test-spec.js",
90
+ "default": "./dist/tests/operations.test-spec.js"
91
+ },
92
+ "./track": {
93
+ "types": "./dist/track.d.ts",
94
+ "bun": "./dist/track.js",
95
+ "node": "./dist/node/track.js",
96
+ "browser": "./dist/browser/track.js",
97
+ "default": "./dist/track.js"
98
+ }
21
99
  },
22
100
  "scripts": {
23
101
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -34,105 +112,105 @@
34
112
  "typecheck": "tsc --noEmit"
35
113
  },
36
114
  "dependencies": {
37
- "@contractspec/lib.contracts": "1.59.0",
38
- "@contractspec/lib.schema": "1.59.0",
39
- "@contractspec/module.learning-journey": "1.59.0"
115
+ "@contractspec/lib.contracts": "1.61.0",
116
+ "@contractspec/lib.schema": "1.61.0",
117
+ "@contractspec/module.learning-journey": "1.61.0"
40
118
  },
41
119
  "devDependencies": {
42
- "@contractspec/tool.typescript": "1.59.0",
120
+ "@contractspec/tool.typescript": "1.61.0",
43
121
  "typescript": "^5.9.3",
44
- "@contractspec/tool.bun": "1.58.0"
122
+ "@contractspec/tool.bun": "1.60.0"
45
123
  },
46
124
  "publishConfig": {
47
125
  "exports": {
48
126
  ".": {
49
127
  "types": "./dist/index.d.ts",
50
128
  "bun": "./dist/index.js",
51
- "node": "./dist/node/index.mjs",
129
+ "node": "./dist/node/index.js",
52
130
  "browser": "./dist/browser/index.js",
53
131
  "default": "./dist/index.js"
54
132
  },
55
133
  "./docs": {
56
134
  "types": "./dist/docs/index.d.ts",
57
135
  "bun": "./dist/docs/index.js",
58
- "node": "./dist/node/docs/index.mjs",
136
+ "node": "./dist/node/docs/index.js",
59
137
  "browser": "./dist/browser/docs/index.js",
60
138
  "default": "./dist/docs/index.js"
61
139
  },
62
140
  "./docs/index": {
63
141
  "types": "./dist/docs/index.d.ts",
64
142
  "bun": "./dist/docs/index.js",
65
- "node": "./dist/node/docs/index.mjs",
143
+ "node": "./dist/node/docs/index.js",
66
144
  "browser": "./dist/browser/docs/index.js",
67
145
  "default": "./dist/docs/index.js"
68
146
  },
69
147
  "./docs/studio-onboarding.docblock": {
70
148
  "types": "./dist/docs/studio-onboarding.docblock.d.ts",
71
149
  "bun": "./dist/docs/studio-onboarding.docblock.js",
72
- "node": "./dist/node/docs/studio-onboarding.docblock.mjs",
150
+ "node": "./dist/node/docs/studio-onboarding.docblock.js",
73
151
  "browser": "./dist/browser/docs/studio-onboarding.docblock.js",
74
152
  "default": "./dist/docs/studio-onboarding.docblock.js"
75
153
  },
76
154
  "./example": {
77
155
  "types": "./dist/example.d.ts",
78
156
  "bun": "./dist/example.js",
79
- "node": "./dist/node/example.mjs",
157
+ "node": "./dist/node/example.js",
80
158
  "browser": "./dist/browser/example.js",
81
159
  "default": "./dist/example.js"
82
160
  },
83
161
  "./handlers/demo.handlers": {
84
162
  "types": "./dist/handlers/demo.handlers.d.ts",
85
163
  "bun": "./dist/handlers/demo.handlers.js",
86
- "node": "./dist/node/handlers/demo.handlers.mjs",
164
+ "node": "./dist/node/handlers/demo.handlers.js",
87
165
  "browser": "./dist/browser/handlers/demo.handlers.js",
88
166
  "default": "./dist/handlers/demo.handlers.js"
89
167
  },
90
168
  "./learning-journey-studio-onboarding.feature": {
91
169
  "types": "./dist/learning-journey-studio-onboarding.feature.d.ts",
92
170
  "bun": "./dist/learning-journey-studio-onboarding.feature.js",
93
- "node": "./dist/node/learning-journey-studio-onboarding.feature.mjs",
171
+ "node": "./dist/node/learning-journey-studio-onboarding.feature.js",
94
172
  "browser": "./dist/browser/learning-journey-studio-onboarding.feature.js",
95
173
  "default": "./dist/learning-journey-studio-onboarding.feature.js"
96
174
  },
97
175
  "./operations": {
98
176
  "types": "./dist/operations/index.d.ts",
99
177
  "bun": "./dist/operations/index.js",
100
- "node": "./dist/node/operations/index.mjs",
178
+ "node": "./dist/node/operations/index.js",
101
179
  "browser": "./dist/browser/operations/index.js",
102
180
  "default": "./dist/operations/index.js"
103
181
  },
104
182
  "./operations/index": {
105
183
  "types": "./dist/operations/index.d.ts",
106
184
  "bun": "./dist/operations/index.js",
107
- "node": "./dist/node/operations/index.mjs",
185
+ "node": "./dist/node/operations/index.js",
108
186
  "browser": "./dist/browser/operations/index.js",
109
187
  "default": "./dist/operations/index.js"
110
188
  },
111
189
  "./presentations": {
112
190
  "types": "./dist/presentations/index.d.ts",
113
191
  "bun": "./dist/presentations/index.js",
114
- "node": "./dist/node/presentations/index.mjs",
192
+ "node": "./dist/node/presentations/index.js",
115
193
  "browser": "./dist/browser/presentations/index.js",
116
194
  "default": "./dist/presentations/index.js"
117
195
  },
118
196
  "./presentations/index": {
119
197
  "types": "./dist/presentations/index.d.ts",
120
198
  "bun": "./dist/presentations/index.js",
121
- "node": "./dist/node/presentations/index.mjs",
199
+ "node": "./dist/node/presentations/index.js",
122
200
  "browser": "./dist/browser/presentations/index.js",
123
201
  "default": "./dist/presentations/index.js"
124
202
  },
125
203
  "./tests/operations.test-spec": {
126
204
  "types": "./dist/tests/operations.test-spec.d.ts",
127
205
  "bun": "./dist/tests/operations.test-spec.js",
128
- "node": "./dist/node/tests/operations.test-spec.mjs",
206
+ "node": "./dist/node/tests/operations.test-spec.js",
129
207
  "browser": "./dist/browser/tests/operations.test-spec.js",
130
208
  "default": "./dist/tests/operations.test-spec.js"
131
209
  },
132
210
  "./track": {
133
211
  "types": "./dist/track.d.ts",
134
212
  "bun": "./dist/track.js",
135
- "node": "./dist/node/track.mjs",
213
+ "node": "./dist/node/track.js",
136
214
  "browser": "./dist/browser/track.js",
137
215
  "default": "./dist/track.js"
138
216
  }