@bitgo/public-types 1.4.1 → 2.0.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/README.md +8 -0
- package/package.json +8 -5
package/README.md
CHANGED
@@ -5,3 +5,11 @@
|
|
5
5
|
[build status]: https://github.com/BitGo/public-types/actions/workflows/release.yml/badge.svg?event=push
|
6
6
|
|
7
7
|
Collection of types exposed externally as part of the BitGo public API
|
8
|
+
|
9
|
+
## Releaseing
|
10
|
+
|
11
|
+
This repository uses [semantic release](https://github.com/semantic-release/semantic-release).
|
12
|
+
|
13
|
+
To trigger a release, use [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/#summary).
|
14
|
+
|
15
|
+
To trigger a major release, [follow the documentation closely](https://github.com/semantic-release/semantic-release?tab=readme-ov-file#commit-message-format) and use `BREAKING CHANGE:` somewhere in the commit
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@bitgo/public-types",
|
3
|
-
"version": "
|
3
|
+
"version": "2.0.1",
|
4
4
|
"description": "Collection of types exposed externally as part of the BitGo public API",
|
5
5
|
"license": "UNLICENSED",
|
6
6
|
"author": "",
|
@@ -20,15 +20,18 @@
|
|
20
20
|
},
|
21
21
|
"dependencies": {
|
22
22
|
"@api-ts/io-ts-http": "1.0.0",
|
23
|
+
"fp-ts": "2.16.2",
|
23
24
|
"io-ts": "2.1.3",
|
24
|
-
"io-ts-types": "0.5.16"
|
25
|
+
"io-ts-types": "0.5.16",
|
26
|
+
"monocle-ts": "2.3.13",
|
27
|
+
"newtype-ts": "0.3.5"
|
25
28
|
},
|
26
29
|
"devDependencies": {
|
30
|
+
"@semantic-release/git": "10.0.1",
|
27
31
|
"@types/node": "20.11.2",
|
28
32
|
"@vitest/coverage-v8": "1.2.0",
|
29
|
-
"
|
33
|
+
"semantic-release": "23.0.0",
|
30
34
|
"typescript": "5.3",
|
31
|
-
"
|
32
|
-
"semantic-release": "23.0.0"
|
35
|
+
"vitest": "1.2.0"
|
33
36
|
}
|
34
37
|
}
|