@leather.io/bitcoin 0.10.3 → 0.10.4

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @leather.io/bitcoin@0.10.3 build /home/runner/work/mono/mono/packages/bitcoin
2
+ > @leather.io/bitcoin@0.10.4 build /home/runner/work/mono/mono/packages/bitcoin
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -7,11 +7,10 @@ CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.1.0
8
8
  CLI Using tsup config: /home/runner/work/mono/mono/packages/bitcoin/tsup.config.ts
9
9
  CLI Target: es2022
10
- CLI Cleaning output folder
11
10
  ESM Build start
12
11
  ESM dist/index.js 18.68 KB
13
12
  ESM dist/index.js.map 34.67 KB
14
- ESM ⚡️ Build success in 45ms
13
+ ESM ⚡️ Build success in 48ms
15
14
  DTS Build start
16
- DTS ⚡️ Build success in 3807ms
15
+ DTS ⚡️ Build success in 3570ms
17
16
  DTS dist/index.d.ts 11.40 KB
package/CHANGELOG.md CHANGED
@@ -156,6 +156,25 @@
156
156
  * @leather.io/crypto bumped to 1.3.0
157
157
  * @leather.io/utils bumped to 0.12.0
158
158
 
159
+ ## [0.10.4](https://github.com/leather-io/mono/compare/@leather.io/bitcoin-v0.10.3...@leather.io/bitcoin-v0.10.4) (2024-08-14)
160
+
161
+
162
+ ### Bug Fixes
163
+
164
+ * improve watch mode ([38e257c](https://github.com/leather-io/mono/commit/38e257c31384ba96b521164891c65016baa12a19))
165
+
166
+
167
+ ### Dependencies
168
+
169
+ * The following workspace dependencies were updated
170
+ * dependencies
171
+ * @leather.io/constants bumped to 0.8.3
172
+ * @leather.io/crypto bumped to 1.3.1
173
+ * @leather.io/models bumped to 0.11.1
174
+ * @leather.io/utils bumped to 0.12.1
175
+ * devDependencies
176
+ * @leather.io/rpc bumped to 2.1.3
177
+
159
178
  ## [0.10.0](https://github.com/leather-io/mono/compare/@leather.io/bitcoin-v0.9.2...@leather.io/bitcoin-v0.10.0) (2024-07-29)
160
179
 
161
180
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@leather.io/bitcoin",
3
3
  "author": "Leather.io contact@leather.io",
4
4
  "description": "Shared bitcoin utilities",
5
- "version": "0.10.3",
5
+ "version": "0.10.4",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/leather.io/mono/tree/dev/packages/bitcoin",
8
8
  "repository": {
@@ -29,10 +29,10 @@
29
29
  "bitcoinjs-lib": "6.1.5",
30
30
  "ecpair": "2.1.0",
31
31
  "varuint-bitcoin": "1.1.2",
32
- "@leather.io/constants": "0.8.2",
33
- "@leather.io/models": "0.11.0",
34
- "@leather.io/utils": "0.12.0",
35
- "@leather.io/crypto": "1.3.0"
32
+ "@leather.io/crypto": "1.3.1",
33
+ "@leather.io/models": "0.11.1",
34
+ "@leather.io/utils": "0.12.1",
35
+ "@leather.io/constants": "0.8.3"
36
36
  },
37
37
  "devDependencies": {
38
38
  "@vitest/coverage-istanbul": "0.34.6",
@@ -42,9 +42,9 @@
42
42
  "tsup": "8.1.0",
43
43
  "typescript": "5.4.5",
44
44
  "vitest": "2.0.3",
45
- "@leather.io/prettier-config": "0.5.0",
46
45
  "@leather.io/eslint-config": "0.6.1",
47
- "@leather.io/rpc": "2.1.2",
46
+ "@leather.io/prettier-config": "0.5.0",
47
+ "@leather.io/rpc": "2.1.3",
48
48
  "@leather.io/tsconfig-config": "0.5.1"
49
49
  },
50
50
  "keywords": [
@@ -58,7 +58,7 @@
58
58
  },
59
59
  "scripts": {
60
60
  "build": "tsup",
61
- "build:watch": "tsup --watch",
61
+ "build:watch": "tsup --watch --onSuccess 'tsup --dts-only'",
62
62
  "format": "prettier . --write --ignore-path ../../.prettierignore",
63
63
  "format:check": "prettier . --check --ignore-path ../../.prettierignore",
64
64
  "lint": "eslint . --fix --ignore-path ../../.eslintignore",
package/tsup.config.ts CHANGED
@@ -3,7 +3,7 @@ import { defineConfig } from 'tsup';
3
3
  export default defineConfig({
4
4
  entry: ['src/index.ts'],
5
5
  sourcemap: true,
6
- clean: true,
6
+ clean: false,
7
7
  dts: true,
8
8
  format: 'esm',
9
9
  });