@contractspec/lib.contracts-library 1.58.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=5
6
- Bundled 5 modules in 5ms
6
+ Bundled 5 modules in 11ms
7
7
 
8
8
  ./index.js 5.0 KB (entry point)
9
9
  templates/index.js 5.0 KB (entry point)
@@ -12,7 +12,7 @@ Bundled 5 modules in 5ms
12
12
  templates/todos.js 1.69 KB (entry point)
13
13
 
14
14
  [contractspec-bun-build] transpile target=node root=src entries=5
15
- Bundled 5 modules in 13ms
15
+ Bundled 5 modules in 10ms
16
16
 
17
17
  ./index.js 5.0 KB (entry point)
18
18
  templates/index.js 5.0 KB (entry point)
@@ -21,7 +21,7 @@ Bundled 5 modules in 13ms
21
21
  templates/todos.js 1.68 KB (entry point)
22
22
 
23
23
  [contractspec-bun-build] transpile target=browser root=src entries=5
24
- Bundled 5 modules in 16ms
24
+ Bundled 5 modules in 14ms
25
25
 
26
26
  ./index.js 5.0 KB (entry point)
27
27
  templates/index.js 5.0 KB (entry point)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @contractspec/lib.contracts-library
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/lib.contracts@1.60.0
13
+ - @contractspec/lib.schema@1.60.0
14
+
15
+ ## 1.59.0
16
+
17
+ ### Minor Changes
18
+
19
+ - 1a0cf44: fix: publishConfig not supported by bun
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies [1a0cf44]
24
+ - @contractspec/lib.contracts@1.59.0
25
+ - @contractspec/lib.schema@1.59.0
26
+
3
27
  ## 1.58.0
4
28
 
5
29
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/lib.contracts-library",
3
- "version": "1.58.0",
3
+ "version": "1.60.0",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -65,22 +65,58 @@
65
65
  }
66
66
  },
67
67
  "exports": {
68
- ".": "./src/index.ts",
69
- "./templates": "./src/templates/index.ts",
70
- "./templates/index": "./src/templates/index.ts",
71
- "./templates/messaging": "./src/templates/messaging.ts",
72
- "./templates/recipes": "./src/templates/recipes.ts",
73
- "./templates/todos": "./src/templates/todos.ts"
68
+ ".": {
69
+ "types": "./dist/index.d.ts",
70
+ "bun": "./dist/index.js",
71
+ "node": "./dist/node/index.mjs",
72
+ "browser": "./dist/browser/index.js",
73
+ "default": "./dist/index.js"
74
+ },
75
+ "./templates": {
76
+ "types": "./dist/templates/index.d.ts",
77
+ "bun": "./dist/templates/index.js",
78
+ "node": "./dist/node/templates/index.mjs",
79
+ "browser": "./dist/browser/templates/index.js",
80
+ "default": "./dist/templates/index.js"
81
+ },
82
+ "./templates/index": {
83
+ "types": "./dist/templates/index.d.ts",
84
+ "bun": "./dist/templates/index.js",
85
+ "node": "./dist/node/templates/index.mjs",
86
+ "browser": "./dist/browser/templates/index.js",
87
+ "default": "./dist/templates/index.js"
88
+ },
89
+ "./templates/messaging": {
90
+ "types": "./dist/templates/messaging.d.ts",
91
+ "bun": "./dist/templates/messaging.js",
92
+ "node": "./dist/node/templates/messaging.mjs",
93
+ "browser": "./dist/browser/templates/messaging.js",
94
+ "default": "./dist/templates/messaging.js"
95
+ },
96
+ "./templates/recipes": {
97
+ "types": "./dist/templates/recipes.d.ts",
98
+ "bun": "./dist/templates/recipes.js",
99
+ "node": "./dist/node/templates/recipes.mjs",
100
+ "browser": "./dist/browser/templates/recipes.js",
101
+ "default": "./dist/templates/recipes.js"
102
+ },
103
+ "./templates/todos": {
104
+ "types": "./dist/templates/todos.d.ts",
105
+ "bun": "./dist/templates/todos.js",
106
+ "node": "./dist/node/templates/todos.mjs",
107
+ "browser": "./dist/browser/templates/todos.js",
108
+ "default": "./dist/templates/todos.js"
109
+ }
74
110
  },
75
111
  "main": "./dist/index.js",
76
112
  "types": "./dist/index.d.ts",
77
113
  "dependencies": {
78
- "@contractspec/lib.contracts": "1.58.0",
79
- "@contractspec/lib.schema": "1.58.0"
114
+ "@contractspec/lib.contracts": "1.60.0",
115
+ "@contractspec/lib.schema": "1.60.0"
80
116
  },
81
117
  "devDependencies": {
82
- "@contractspec/tool.typescript": "1.58.0",
118
+ "@contractspec/tool.typescript": "1.60.0",
83
119
  "typescript": "^5.9.3",
84
- "@contractspec/tool.bun": "1.57.0"
120
+ "@contractspec/tool.bun": "1.59.0"
85
121
  }
86
122
  }