@leather.io/utils 0.12.0 → 0.12.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @leather.io/utils@0.12.0 build /home/runner/work/mono/mono/packages/utils
2
+ > @leather.io/utils@0.12.1 build /home/runner/work/mono/mono/packages/utils
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/utils/tsup.config.ts
9
9
  CLI Target: es2022
10
- CLI Cleaning output folder
11
10
  ESM Build start
12
11
  ESM dist/index.js 14.06 KB
13
12
  ESM dist/index.js.map 27.14 KB
14
- ESM ⚡️ Build success in 21ms
13
+ ESM ⚡️ Build success in 22ms
15
14
  DTS Build start
16
- DTS ⚡️ Build success in 1473ms
15
+ DTS ⚡️ Build success in 1449ms
17
16
  DTS dist/index.d.ts 6.87 KB
package/CHANGELOG.md CHANGED
@@ -72,6 +72,22 @@
72
72
  * @leather.io/models bumped to 0.11.0
73
73
  * @leather.io/rpc bumped to 2.1.2
74
74
 
75
+ ## [0.12.1](https://github.com/leather-io/mono/compare/@leather.io/utils-v0.12.0...@leather.io/utils-v0.12.1) (2024-08-14)
76
+
77
+
78
+ ### Bug Fixes
79
+
80
+ * improve watch mode ([38e257c](https://github.com/leather-io/mono/commit/38e257c31384ba96b521164891c65016baa12a19))
81
+
82
+
83
+ ### Dependencies
84
+
85
+ * The following workspace dependencies were updated
86
+ * dependencies
87
+ * @leather.io/constants bumped to 0.8.3
88
+ * @leather.io/models bumped to 0.11.1
89
+ * @leather.io/rpc bumped to 2.1.3
90
+
75
91
  ## [0.12.0](https://github.com/leather-io/mono/compare/@leather.io/utils-v0.11.1...@leather.io/utils-v0.12.0) (2024-08-08)
76
92
 
77
93
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@leather.io/utils",
3
3
  "author": "Leather.io contact@leather.io",
4
4
  "description": "Shared bitcoin utilities",
5
- "version": "0.12.0",
5
+ "version": "0.12.1",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/leather-io/mono/tree/dev/packages/utils",
8
8
  "repository": {
@@ -17,9 +17,9 @@
17
17
  "bugs": "https://github.com/leather-io/mono/issues",
18
18
  "dependencies": {
19
19
  "bignumber.js": "9.1.2",
20
- "@leather.io/rpc": "2.1.2",
21
- "@leather.io/constants": "0.8.2",
22
- "@leather.io/models": "0.11.0"
20
+ "@leather.io/constants": "0.8.3",
21
+ "@leather.io/models": "0.11.1",
22
+ "@leather.io/rpc": "2.1.3"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@vitest/coverage-istanbul": "0.34.6",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "scripts": {
45
45
  "build": "tsup",
46
- "build:watch": "tsup --watch",
46
+ "build:watch": "tsup --watch --onSuccess 'tsup --dts-only'",
47
47
  "format": "prettier . --write --ignore-path ../../.prettierignore",
48
48
  "format:check": "prettier . --check --ignore-path ../../.prettierignore",
49
49
  "lint": "eslint . --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
  });