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