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