locize-cli 7.10.1 → 7.11.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 +5 -0
- package/format.js +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ 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.11.0](https://github.com/locize/locize-cli/compare/v7.10.1...v7.11.0) - 2022-06-13
|
|
9
|
+
|
|
10
|
+
- alpine build
|
|
11
|
+
- update dependencies
|
|
12
|
+
|
|
8
13
|
## [7.10.1](https://github.com/locize/locize-cli/compare/v7.10.0...v7.10.1) - 2022-04-07
|
|
9
14
|
|
|
10
15
|
- cache dns lookups
|
package/format.js
CHANGED
|
@@ -150,7 +150,7 @@ function processFiles(opt, filePaths, clb) {
|
|
|
150
150
|
files.forEach((f) => {
|
|
151
151
|
if (f.content) {
|
|
152
152
|
Object.keys(f.content).forEach((k) => {
|
|
153
|
-
if (f.content[k] && typeof f.content[k] === 'object' &&
|
|
153
|
+
if (f.content[k] && typeof f.content[k] === 'object' && f.content[k].value !== undefined) {
|
|
154
154
|
f.content[k] = f.content[k].value;
|
|
155
155
|
}
|
|
156
156
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "locize-cli",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.11.0",
|
|
4
4
|
"description": "locize cli to import locales",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@js.properties/properties": "0.5.4",
|
|
11
11
|
"android-string-resource": "2.3.4",
|
|
12
|
-
"async": "3.2.
|
|
12
|
+
"async": "3.2.4",
|
|
13
13
|
"cacheable-lookup": "6.0.4",
|
|
14
14
|
"colors": "1.4.0",
|
|
15
|
-
"commander": "9.
|
|
15
|
+
"commander": "9.3.0",
|
|
16
16
|
"csvjson": "5.1.0",
|
|
17
|
-
"diff": "5.
|
|
17
|
+
"diff": "5.1.0",
|
|
18
18
|
"flat": "5.0.2",
|
|
19
19
|
"fluent_conv": "3.1.0",
|
|
20
20
|
"gettext-converter": "1.2.2",
|
|
21
|
-
"https-proxy-agent": "5.0.
|
|
22
|
-
"ini": "
|
|
21
|
+
"https-proxy-agent": "5.0.1",
|
|
22
|
+
"ini": "3.0.0",
|
|
23
23
|
"js-yaml": "4.1.0",
|
|
24
24
|
"laravelphp": "2.0.3",
|
|
25
25
|
"lodash.clonedeep": "4.5.0",
|
|
@@ -30,18 +30,18 @@
|
|
|
30
30
|
"strings-file": "0.0.5",
|
|
31
31
|
"tmexchange": "2.0.4",
|
|
32
32
|
"xliff": "6.0.3",
|
|
33
|
-
"xlsx": "0.18.
|
|
33
|
+
"xlsx": "0.18.5"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"eslint": "
|
|
37
|
-
"gh-release": "6.0.
|
|
38
|
-
"pkg": "5.
|
|
36
|
+
"eslint": "8.17.0",
|
|
37
|
+
"gh-release": "6.0.4",
|
|
38
|
+
"pkg": "5.7.0"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"lint": "eslint .",
|
|
42
42
|
"test": "npm run lint",
|
|
43
|
-
"pkg": "mkdir -p ./bins && pkg ./bin/locize --out-path ./bins --targets node16-linux-x64,node16-macos-x64,node16-win-x64",
|
|
44
|
-
"release": "gh-release --assets ./bins/locize-linux,./bins/locize-macos,./bins/locize-win.exe",
|
|
43
|
+
"pkg": "mkdir -p ./bins && pkg ./bin/locize --out-path ./bins --targets node16-linux-x64,node16-macos-x64,node16-win-x64,node16-alpine-x64",
|
|
44
|
+
"release": "gh-release --assets ./bins/locize-linux,./bins/locize-macos,./bins/locize-win.exe,./bins/locize-alpine",
|
|
45
45
|
"version": "npm run pkg",
|
|
46
46
|
"postversion": "git push && npm run release"
|
|
47
47
|
},
|