@contractspec/example.learning-journey-crm-onboarding 1.59.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=10
6
- Bundled 10 modules in 19ms
6
+ Bundled 10 modules in 11ms
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)
@@ -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 34ms
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,19 @@
1
1
  # @contractspec/example.learning-journey-crm-onboarding
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/module.learning-journey@1.60.0
13
+ - @contractspec/example.crm-pipeline@1.60.0
14
+ - @contractspec/lib.contracts@1.60.0
15
+ - @contractspec/lib.schema@1.60.0
16
+
3
17
  ## 1.59.0
4
18
 
5
19
  ### 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.60.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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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.mjs",
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,15 +112,15 @@
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.60.0",
116
+ "@contractspec/lib.schema": "1.60.0",
117
+ "@contractspec/module.learning-journey": "1.60.0",
118
+ "@contractspec/example.crm-pipeline": "1.60.0"
41
119
  },
42
120
  "devDependencies": {
43
- "@contractspec/tool.typescript": "1.59.0",
121
+ "@contractspec/tool.typescript": "1.60.0",
44
122
  "typescript": "^5.9.3",
45
- "@contractspec/tool.bun": "1.58.0"
123
+ "@contractspec/tool.bun": "1.59.0"
46
124
  },
47
125
  "publishConfig": {
48
126
  "exports": {