@leather.io/constants 0.15.2 → 0.15.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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +12 -0
- package/package.json +4 -8
- package/.eslintrc.yml +0 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @leather.io/constants@0.15.
|
|
2
|
+
> @leather.io/constants@0.15.4 build /home/runner/work/mono/mono/packages/constants
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
CLI Building entry: src/index.ts
|
|
@@ -10,7 +10,7 @@ CLI Target: es2022
|
|
|
10
10
|
ESM Build start
|
|
11
11
|
ESM dist/index.js 2.90 KB
|
|
12
12
|
ESM dist/index.js.map 4.32 KB
|
|
13
|
-
ESM ⚡️ Build success in
|
|
13
|
+
ESM ⚡️ Build success in 20ms
|
|
14
14
|
DTS Build start
|
|
15
|
-
DTS ⚡️ Build success in
|
|
15
|
+
DTS ⚡️ Build success in 1706ms
|
|
16
16
|
DTS dist/index.d.ts 2.56 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -103,6 +103,18 @@
|
|
|
103
103
|
* dependencies
|
|
104
104
|
* @leather.io/models bumped to 0.24.2
|
|
105
105
|
|
|
106
|
+
### Dependencies
|
|
107
|
+
|
|
108
|
+
* The following workspace dependencies were updated
|
|
109
|
+
* dependencies
|
|
110
|
+
* @leather.io/models bumped to 0.24.3
|
|
111
|
+
|
|
112
|
+
### Dependencies
|
|
113
|
+
|
|
114
|
+
* The following workspace dependencies were updated
|
|
115
|
+
* dependencies
|
|
116
|
+
* @leather.io/models bumped to 0.25.0
|
|
117
|
+
|
|
106
118
|
## [0.15.0](https://github.com/leather-io/mono/compare/@leather.io/constants-v0.14.1...@leather.io/constants-v0.15.0) (2024-12-12)
|
|
107
119
|
|
|
108
120
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@leather.io/constants",
|
|
3
3
|
"author": "Leather.io contact@leather.io",
|
|
4
4
|
"description": "Shared bitcoin utilities",
|
|
5
|
-
"version": "0.15.
|
|
5
|
+
"version": "0.15.4",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/leather-io/mono/tree/dev/packages/constants",
|
|
8
8
|
"repository": {
|
|
@@ -16,17 +16,15 @@
|
|
|
16
16
|
},
|
|
17
17
|
"bugs": "https://github.com/leather-io/mono/issues",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@leather.io/models": "0.
|
|
19
|
+
"@leather.io/models": "0.25.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"concurrently": "8.2.2",
|
|
23
|
-
"eslint": "8.53.0",
|
|
24
23
|
"prettier": "3.3.3",
|
|
25
24
|
"tsup": "8.1.0",
|
|
26
25
|
"typescript": "5.5.4",
|
|
27
|
-
"@leather.io/
|
|
28
|
-
"@leather.io/
|
|
29
|
-
"@leather.io/tsconfig-config": "0.6.0"
|
|
26
|
+
"@leather.io/tsconfig-config": "0.6.0",
|
|
27
|
+
"@leather.io/prettier-config": "0.6.0"
|
|
30
28
|
},
|
|
31
29
|
"keywords": [
|
|
32
30
|
"constants",
|
|
@@ -42,8 +40,6 @@
|
|
|
42
40
|
"build:watch": "tsup --watch --onSuccess 'tsup --dts-only'",
|
|
43
41
|
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
|
44
42
|
"format:check": "prettier . --check --ignore-path ../../.prettierignore",
|
|
45
|
-
"lint": "eslint . --ignore-path ../../.eslintignore",
|
|
46
|
-
"lint:fix": "eslint . --fix --ignore-path ../../.eslintignore",
|
|
47
43
|
"typecheck": "tsc --noEmit"
|
|
48
44
|
}
|
|
49
45
|
}
|
package/.eslintrc.yml
DELETED