locize-cli 10.3.1 → 10.3.2

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 CHANGED
@@ -6,9 +6,13 @@ 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.2](https://github.com/locize/locize-cli/compare/v10.3.1...v10.3.2) - 2025-09-03
10
+
11
+ - fix format comparison
12
+
9
13
  ## [10.3.1](https://github.com/locize/locize-cli/compare/v10.3.0...v10.3.1) - 2025-08-11
10
14
 
11
- - fix alias fo delete-branch command
15
+ - fix alias for delete-branch command
12
16
 
13
17
  ## [10.3.0](https://github.com/locize/locize-cli/compare/v10.2.1...v10.3.0) - 2025-08-11
14
18
 
package/format.js CHANGED
@@ -87,6 +87,7 @@ function convertAllFilesToDesiredFormat(opt, files, clb) {
87
87
  err.message = 'Invalid content for "' + opt.format + '" format!\n' + (err.message || '');
88
88
  return cb(err);
89
89
  }
90
+ res = (opt.format !== 'xlsx' && !res.endsWith('\n')) ? (res + '\n') : res;
90
91
  file.converted = res;
91
92
  cb(null, file);
92
93
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "locize-cli",
3
- "version": "10.3.1",
3
+ "version": "10.3.2",
4
4
  "description": "locize cli to import locales",
5
5
  "main": "index.js",
6
6
  "bin": {