@cocreate/cli 1.51.2 → 1.53.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 +22 -0
- package/CoCreate.config.js +562 -500
- package/package.json +1 -9
- package/src/coc.js +80 -92
- package/src/commands/other/translate.js +147 -0
- package/src/commands/upload.js +93 -100
- package/src/execute.js +5 -3
- package/src/getConfig.js +32 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
# [1.53.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.52.0...v1.53.0) (2025-10-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Correct directory handling in upload and getConfig functions ([1af7531](https://github.com/CoCreate-app/CoCreate-cli/commit/1af7531a157dd3ce430776c2b669c6976b06cdc6))
|
|
7
|
+
* Improve JSON extraction from AI response and update getConfig function for clarity ([8f22fc1](https://github.com/CoCreate-app/CoCreate-cli/commit/8f22fc15991615b47ef3dfad8c0532e023a5e412))
|
|
8
|
+
* Update config file path handling in getConfig function ([e32e20a](https://github.com/CoCreate-app/CoCreate-cli/commit/e32e20a87124aca74f02a9cd56f13adbcb784569))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Add translation functionality to upload command and integrate translate module ([a9ff96a](https://github.com/CoCreate-app/CoCreate-cli/commit/a9ff96ac873f6f2ed14001a5877db4a7bbab0cd8))
|
|
14
|
+
* Enhance translation object structure to include placeholders in generated JSON ([6257ed1](https://github.com/CoCreate-app/CoCreate-cli/commit/6257ed18ea9152c052e32a13c43b4c51e1646cfc))
|
|
15
|
+
|
|
16
|
+
# [1.52.0](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.51.2...v1.52.0) (2025-09-01)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* Refactor command-line argument handling and configuration loading ([4abf92a](https://github.com/CoCreate-app/CoCreate-cli/commit/4abf92a986dee120987c6f5899b429edf9cc8946))
|
|
22
|
+
|
|
1
23
|
## [1.51.2](https://github.com/CoCreate-app/CoCreate-cli/compare/v1.51.1...v1.51.2) (2025-05-01)
|
|
2
24
|
|
|
3
25
|
|