@capawesome/cli 4.9.3-dev.47af0d1.1779135155 → 4.10.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.
- package/CHANGELOG.md +12 -0
- package/dist/utils/zip.js +4 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [4.10.0](https://github.com/capawesome-team/cli/compare/v4.9.3...v4.10.0) (2026-05-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **apps:** support zip files in `apps:builds:create --path` option ([#148](https://github.com/capawesome-team/cli/issues/148)) ([6417f02](https://github.com/capawesome-team/cli/commit/6417f028ff030b08b971d76bf2aaf983663bbb3c))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **apps:liveupdates:** clear zip entry attrs to prevent Android extraction errors ([#163](https://github.com/capawesome-team/cli/issues/163)) ([2636c02](https://github.com/capawesome-team/cli/commit/2636c0260095e0d7e13934d58e7a12e646a3ec43))
|
|
16
|
+
|
|
5
17
|
## [4.9.3](https://github.com/capawesome-team/cli/compare/v4.9.2...v4.9.3) (2026-05-14)
|
|
6
18
|
|
|
7
19
|
|
package/dist/utils/zip.js
CHANGED
|
@@ -21,9 +21,10 @@ class ZipImpl {
|
|
|
21
21
|
}
|
|
22
22
|
async zipFolderWithGitignore(sourceFolder) {
|
|
23
23
|
// Do NOT apply the `entry.attr = 0` workaround from `zipFolder` here.
|
|
24
|
-
// This method zips full project sources for
|
|
25
|
-
//
|
|
26
|
-
//
|
|
24
|
+
// This method zips full project sources for server-side builds (callers:
|
|
25
|
+
// `apps:builds:create`, `apps:liveupdates:create`), which include
|
|
26
|
+
// executables like `gradlew` whose `0755` mode must survive the round-trip
|
|
27
|
+
// so the build runner can execute them.
|
|
27
28
|
const files = await globby(['**/*'], {
|
|
28
29
|
cwd: sourceFolder,
|
|
29
30
|
gitignore: true,
|