locize-cli 8.5.0 → 8.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +3 -3
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
+ ## [8.5.1](https://github.com/locize/locize-cli/compare/v8.5.0...v8.5.1) - 2025-02-19
9
+
10
+ - downgrade binary generation to node v20 to try to address [103](https://github.com/locize/locize-cli/issues/103)
11
+
8
12
  ## [8.5.0](https://github.com/locize/locize-cli/compare/v8.4.0...v8.5.0) - 2025-02-18
9
13
 
10
14
  - feat: add --tenants option for publish version command [102](https://github.com/locize/locize-cli/issues/102)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "locize-cli",
3
- "version": "8.5.0",
3
+ "version": "8.5.1",
4
4
  "description": "locize cli to import locales",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -36,12 +36,12 @@
36
36
  "devDependencies": {
37
37
  "eslint": "8.56.0",
38
38
  "gh-release": "7.0.2",
39
- "@yao-pkg/pkg": "6.2.0"
39
+ "@yao-pkg/pkg": "6.3.1"
40
40
  },
41
41
  "scripts": {
42
42
  "lint": "eslint .",
43
43
  "test": "npm run lint",
44
- "pkg": "mkdir -p ./bins && pkg ./bin/locize --out-path ./bins --targets node22-linux-x64,node22-macos-x64,node22-win-x64,node22-alpine-x64",
44
+ "pkg": "mkdir -p ./bins && pkg ./bin/locize --out-path ./bins --targets node20-linux-x64,node20-macos-x64,node20-win-x64,node20-alpine-x64",
45
45
  "release": "gh-release --assets ./bins/locize-linux,./bins/locize-macos,./bins/locize-win.exe,./bins/locize-alpine",
46
46
  "version": "npm run pkg",
47
47
  "postversion": "git push && npm run release"