@capgo/cli 4.10.32 → 4.10.34
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/.github/workflows/check_posix_paths.yml +8 -2
- package/CHANGELOG.md +15 -0
- package/bun.lockb +0 -0
- package/dist/index.js +58831 -55013
- package/package.json +13 -13
|
@@ -63,9 +63,15 @@ jobs:
|
|
|
63
63
|
name: build-zip-windows-2022
|
|
64
64
|
path: build-windows-2022.zip
|
|
65
65
|
|
|
66
|
+
- name: Check file sizes
|
|
67
|
+
run: |
|
|
68
|
+
echo "Checking file sizes..."
|
|
69
|
+
ls -lh /home/runner/work/CLI/CLI/build-windows-2019.zip
|
|
70
|
+
ls -lh /home/runner/work/CLI/CLI/build-windows-2022.zip
|
|
71
|
+
|
|
66
72
|
- name: Verify POSIX paths for Windows 2019 build
|
|
67
73
|
run: |
|
|
68
|
-
unzip build-windows-2019 -d extracted-2019
|
|
74
|
+
unzip /home/runner/work/CLI/CLI/build-windows-2019 -d extracted-2019
|
|
69
75
|
error_found=false
|
|
70
76
|
find extracted-2019 -type f | while read -r file; do
|
|
71
77
|
if [[ "$file" =~ "\\" ]]; then
|
|
@@ -82,7 +88,7 @@ jobs:
|
|
|
82
88
|
|
|
83
89
|
- name: Verify POSIX paths for Windows 2022 build
|
|
84
90
|
run: |
|
|
85
|
-
unzip build-windows-2022 -d extracted-2022
|
|
91
|
+
unzip /home/runner/work/CLI/CLI/build-windows-2022 -d extracted-2022
|
|
86
92
|
error_found=false
|
|
87
93
|
find extracted-2022 -type f | while read -r file; do
|
|
88
94
|
if [[ "$file" =~ "\\" ]]; then
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [4.10.34](https://github.com/Cap-go/CLI/compare/v4.10.33...v4.10.34) (2024-06-21)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add check file ([41cd144](https://github.com/Cap-go/CLI/commit/41cd144ee0e757157e98d5ebbdbb04fabee0e3b9))
|
|
11
|
+
* deps ([cef42c3](https://github.com/Cap-go/CLI/commit/cef42c390ac148dd24237ac603c5fbd697e3fe9c))
|
|
12
|
+
|
|
13
|
+
### [4.10.33](https://github.com/Cap-go/CLI/compare/v4.10.32...v4.10.33) (2024-06-21)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* path unzip ([4a58dc1](https://github.com/Cap-go/CLI/commit/4a58dc19b7623730b7034262aa8a6e2c96748084))
|
|
19
|
+
|
|
5
20
|
### [4.10.32](https://github.com/Cap-go/CLI/compare/v4.10.31...v4.10.32) (2024-06-21)
|
|
6
21
|
|
|
7
22
|
|
package/bun.lockb
CHANGED
|
Binary file
|