ox 1.3.0 → 1.3.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/CHANGELOG.md +6 -0
- package/package.json +5 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# ox
|
|
2
2
|
|
|
3
|
+
## 1.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#343](https://github.com/wevm/ox/pull/343) [`0068849`](https://github.com/wevm/ox/commit/0068849cc6ac3197ce9974b5f10fb02192a5a35c) Thanks [@jxom](https://github.com/jxom)! - Fixed the published package missing the `ox/_types/*` subpath: `postinstall` regenerates `exports` without it, and `zile publish:prepare` strips the `scripts` needed to re-apply it, so publishing now re-applies it directly before `changeset publish`.
|
|
8
|
+
|
|
3
9
|
## 1.3.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ox",
|
|
3
3
|
"description": "Ethereum Standard Library",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "1.3.
|
|
5
|
+
"version": "1.3.1",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"sideEffects": false,
|
|
8
8
|
"license": "MIT",
|
|
@@ -1056,6 +1056,10 @@
|
|
|
1056
1056
|
"src": "./src/zod/tempo/z.ts",
|
|
1057
1057
|
"types": "./dist/zod/tempo/z.d.ts",
|
|
1058
1058
|
"default": "./dist/zod/tempo/z.js"
|
|
1059
|
+
},
|
|
1060
|
+
"./_types/*": {
|
|
1061
|
+
"types": "./dist/*.d.ts",
|
|
1062
|
+
"default": "./dist/*.js"
|
|
1059
1063
|
}
|
|
1060
1064
|
},
|
|
1061
1065
|
"module": "./dist/index.js",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** @internal */
|
|
2
|
-
export const version = '1.3.
|
|
2
|
+
export const version = '1.3.1'
|