locize-cli 7.12.6 → 7.12.7
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/package.json +1 -1
- package/sync.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
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
|
+
## [7.12.7](https://github.com/locize/locize-cli/compare/v7.12.6...v7.12.7) - 2022-09-09
|
|
9
|
+
|
|
10
|
+
- fix for #75
|
|
11
|
+
|
|
8
12
|
## [7.12.6](https://github.com/locize/locize-cli/compare/v7.12.5...v7.12.6) - 2022-08-26
|
|
9
13
|
|
|
10
14
|
- internal optimization of unpublished download workflow
|
package/package.json
CHANGED
package/sync.js
CHANGED
|
@@ -110,7 +110,7 @@ const compareNamespace = (local, remote, lastModifiedLocal, lastModifiedRemote)
|
|
|
110
110
|
}
|
|
111
111
|
if (
|
|
112
112
|
remote[k] && (
|
|
113
|
-
(typeof local[k] === 'object' && local[k].value && remote[k] !== local[k].value) ||
|
|
113
|
+
(typeof local[k] === 'object' && local[k] && local[k].value && remote[k] !== local[k].value) ||
|
|
114
114
|
(typeof local[k] !== 'object' && remote[k] !== local[k])
|
|
115
115
|
)
|
|
116
116
|
) {
|