locize-cli 7.14.7 → 7.14.8

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 (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +1 -1
  3. package/sync.js +2 -2
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.14.8](https://github.com/locize/locize-cli/compare/v7.14.7...v7.14.8) - 2023-08-01
9
+
10
+ - sync: log path if passing custom path argument
11
+
8
12
  ## [7.14.7](https://github.com/locize/locize-cli/compare/v7.14.6...v7.14.7) - 2023-07-28
9
13
 
10
14
  - retry on ETIMEDOUT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "locize-cli",
3
- "version": "7.14.7",
3
+ "version": "7.14.8",
4
4
  "description": "locize cli to import locales",
5
5
  "main": "index.js",
6
6
  "bin": {
package/sync.js CHANGED
@@ -580,7 +580,7 @@ const sync = (opt, cb) => {
580
580
  }
581
581
 
582
582
  if (opt.referenceLanguageOnly) {
583
- console.log(colors.grey('checking local (reference language)...'));
583
+ console.log(colors.grey(`checking local${opt.path !== process.cwd() ? ` (${opt.path})` : ''} only reference language...`));
584
584
  parseLocalReference(opt, (err, localNamespaces) => {
585
585
  if (err) return handleError(err, cb);
586
586
 
@@ -595,7 +595,7 @@ const sync = (opt, cb) => {
595
595
  return;
596
596
  }
597
597
 
598
- console.log(colors.grey('checking local...'));
598
+ console.log(colors.grey(`checking local${opt.path !== process.cwd() ? ` (${opt.path})` : ''}...`));
599
599
  parseLocalLanguages(opt, remoteLanguages, (err, localNamespaces) => {
600
600
  if (err) return handleError(err, cb);
601
601