locize-cli 10.3.0 → 10.3.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/CHANGELOG.md +4 -0
- package/bin/locize +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ Project versioning adheres to [Semantic Versioning](http://semver.org/).
|
|
|
6
6
|
Change log format is based on [Keep a Changelog](http://keepachangelog.com/).
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [10.3.1](https://github.com/locize/locize-cli/compare/v10.3.0...v10.3.1) - 2025-08-11
|
|
10
|
+
|
|
11
|
+
- fix alias fo delete-branch command
|
|
12
|
+
|
|
9
13
|
## [10.3.0](https://github.com/locize/locize-cli/compare/v10.2.1...v10.3.0) - 2025-08-11
|
|
10
14
|
|
|
11
15
|
- introduce delete-branch command
|
package/bin/locize
CHANGED
|
@@ -895,7 +895,7 @@ program
|
|
|
895
895
|
|
|
896
896
|
program
|
|
897
897
|
.command('delete-branch <branch>')
|
|
898
|
-
.alias('
|
|
898
|
+
.alias('db')
|
|
899
899
|
.description('delete branch')
|
|
900
900
|
.option('-k, --api-key <apiKey>', 'The api-key that should be used')
|
|
901
901
|
.option('-i, --project-id <projectId>', 'The project-id that should be used')
|