@leather.io/models 0.11.0 → 0.11.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/.turbo/turbo-build.log +13 -14
- package/CHANGELOG.md +7 -0
- package/package.json +4 -4
- package/tsup.config.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @leather.io/models@0.11.
|
|
2
|
+
> @leather.io/models@0.11.1 build /home/runner/work/mono/mono/packages/models
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
[32mDTS[39m [1mdist/index.d.ts [22m[32m15.29 KB[39m
|
|
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/models/tsup.config.ts
|
|
9
|
+
CLI Target: es2022
|
|
10
|
+
ESM Build start
|
|
11
|
+
ESM dist/index.js 8.87 KB
|
|
12
|
+
ESM dist/index.js.map 17.93 KB
|
|
13
|
+
ESM ⚡️ Build success in 32ms
|
|
14
|
+
DTS Build start
|
|
15
|
+
DTS ⚡️ Build success in 2170ms
|
|
16
|
+
DTS dist/index.d.ts 15.29 KB
|
package/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,13 @@
|
|
|
18
18
|
* devDependencies
|
|
19
19
|
* @leather.io/tsconfig-config bumped to 0.5.1
|
|
20
20
|
|
|
21
|
+
## [0.11.1](https://github.com/leather-io/mono/compare/@leather.io/models-v0.11.0...@leather.io/models-v0.11.1) (2024-08-14)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* improve watch mode ([38e257c](https://github.com/leather-io/mono/commit/38e257c31384ba96b521164891c65016baa12a19))
|
|
27
|
+
|
|
21
28
|
## [0.11.0](https://github.com/leather-io/mono/compare/@leather.io/models-v0.10.2...@leather.io/models-v0.11.0) (2024-07-31)
|
|
22
29
|
|
|
23
30
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@leather.io/models",
|
|
3
3
|
"author": "Leather.io contact@leather.io",
|
|
4
4
|
"description": "Leather models and types",
|
|
5
|
-
"version": "0.11.
|
|
5
|
+
"version": "0.11.1",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/leather-io/mono/tree/dev/packages/models",
|
|
8
8
|
"repository": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"prettier": "3.3.0",
|
|
26
26
|
"tsup": "8.1.0",
|
|
27
27
|
"typescript": "5.4.5",
|
|
28
|
+
"@leather.io/eslint-config": "0.6.1",
|
|
28
29
|
"@leather.io/prettier-config": "0.5.0",
|
|
29
|
-
"@leather.io/tsconfig-config": "0.5.1"
|
|
30
|
-
"@leather.io/eslint-config": "0.6.1"
|
|
30
|
+
"@leather.io/tsconfig-config": "0.5.1"
|
|
31
31
|
},
|
|
32
32
|
"keywords": [
|
|
33
33
|
"leather",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "tsup",
|
|
43
|
-
"build:watch": "tsup --watch",
|
|
43
|
+
"build:watch": "tsup --watch --onSuccess 'tsup --dts-only'",
|
|
44
44
|
"format": "prettier . --write --ignore-path ../../.prettierignore",
|
|
45
45
|
"format:check": "prettier . --check --ignore-path ../../.prettierignore",
|
|
46
46
|
"lint": "eslint . --ignore-path ../../.eslintignore",
|