@leather.io/constants 0.8.2 → 0.9.0

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,17 +1,16 @@
1
1
 
2
- > @leather.io/constants@0.8.2 build /home/runner/work/mono/mono/packages/constants
2
+ > @leather.io/constants@0.9.0 build /home/runner/work/mono/mono/packages/constants
3
3
  > tsup
4
4
 
5
- CLI Building entry: src/index.ts
6
- CLI Using tsconfig: tsconfig.json
7
- CLI tsup v8.1.0
8
- CLI Using tsup config: /home/runner/work/mono/mono/packages/constants/tsup.config.ts
9
- CLI Target: es2022
10
- CLI Cleaning output folder
11
- ESM Build start
12
- ESM dist/index.js 1.08 KB
13
- ESM dist/index.js.map 1.50 KB
14
- ESM ⚡️ Build success in 31ms
15
- DTS Build start
16
- DTS ⚡️ Build success in 2064ms
17
- DTS dist/index.d.ts 1.13 KB
5
+ CLI Building entry: src/index.ts
6
+ CLI Using tsconfig: tsconfig.json
7
+ CLI tsup v8.1.0
8
+ CLI Using tsup config: /home/runner/work/mono/mono/packages/constants/tsup.config.ts
9
+ CLI Target: es2022
10
+ ESM Build start
11
+ ESM dist/index.js 1.08 KB
12
+ ESM dist/index.js.map 1.50 KB
13
+ ESM ⚡️ Build success in 23ms
14
+ DTS Build start
15
+ DTS ⚡️ Build success in 1440ms
16
+ DTS dist/index.d.ts 1.13 KB
package/CHANGELOG.md CHANGED
@@ -19,6 +19,33 @@
19
19
  * devDependencies
20
20
  * @leather.io/tsconfig-config bumped to 0.5.1
21
21
 
22
+ ## [0.9.0](https://github.com/leather-io/mono/compare/@leather.io/constants-v0.8.3...@leather.io/constants-v0.9.0) (2024-08-15)
23
+
24
+
25
+ ### Features
26
+
27
+ * upgrade pkgs ([c091981](https://github.com/leather-io/mono/commit/c09198150ed429989d920d6350ad43d0ff4cfe5c))
28
+
29
+
30
+ ### Bug Fixes
31
+
32
+ * husky for commitlint only ([ce93a4b](https://github.com/leather-io/mono/commit/ce93a4bc95fbb5128288558ffbeebfccfded38ef))
33
+
34
+
35
+ ### Dependencies
36
+
37
+ * The following workspace dependencies were updated
38
+ * devDependencies
39
+ * @leather.io/prettier-config bumped to 0.6.0
40
+ * @leather.io/tsconfig-config bumped to 0.6.0
41
+
42
+ ## [0.8.3](https://github.com/leather-io/mono/compare/@leather.io/constants-v0.8.2...@leather.io/constants-v0.8.3) (2024-08-14)
43
+
44
+
45
+ ### Bug Fixes
46
+
47
+ * improve watch mode ([38e257c](https://github.com/leather-io/mono/commit/38e257c31384ba96b521164891c65016baa12a19))
48
+
22
49
  ## [0.8.0](https://github.com/leather-io/mono/compare/@leather.io/constants-v0.7.0...@leather.io/constants-v0.8.0) (2024-06-21)
23
50
 
24
51
 
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.8.2",
5
+ "version": "0.9.0",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/leather-io/mono/tree/dev/packages/constants",
8
8
  "repository": {
@@ -18,12 +18,12 @@
18
18
  "devDependencies": {
19
19
  "concurrently": "8.2.2",
20
20
  "eslint": "8.53.0",
21
- "prettier": "3.3.0",
21
+ "prettier": "3.3.3",
22
22
  "tsup": "8.1.0",
23
- "typescript": "5.4.5",
24
- "@leather.io/eslint-config": "0.6.1",
25
- "@leather.io/tsconfig-config": "0.5.1",
26
- "@leather.io/prettier-config": "0.5.0"
23
+ "typescript": "5.5.4",
24
+ "@leather.io/prettier-config": "0.6.0",
25
+ "@leather.io/tsconfig-config": "0.6.0",
26
+ "@leather.io/eslint-config": "0.6.1"
27
27
  },
28
28
  "keywords": [
29
29
  "constants",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup ",
39
- "build:watch": "tsup --watch",
39
+ "build:watch": "tsup --watch --onSuccess 'tsup --dts-only'",
40
40
  "format": "prettier . --write --ignore-path ../../.prettierignore",
41
41
  "format:check": "prettier . --check --ignore-path ../../.prettierignore",
42
42
  "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
  });