locize-cli
Advanced tools
Comparing version 7.14.15 to 7.15.0
@@ -8,2 +8,6 @@ # locize-cli change log | ||
## [7.15.0](https://github.com/locize/locize-cli/compare/v7.14.15...v7.15.0) - 2023-12-18 | ||
- locize sync: show publish mode advice if necessary | ||
## [7.14.15](https://github.com/locize/locize-cli/compare/v7.14.14...v7.14.15) - 2023-12-18 | ||
@@ -10,0 +14,0 @@ |
{ | ||
"name": "locize-cli", | ||
"version": "7.14.15", | ||
"version": "7.15.0", | ||
"description": "locize cli to import locales", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -273,2 +273,7 @@ const fs = require('fs'); | ||
if (err) return clb(err); | ||
const cliInfo = res.headers.get('x-cli-info'); | ||
if (cliInfo && cliInfo !== opt.lastShownCliInfo) { | ||
console.log(colors.yellow(cliInfo)); | ||
opt.lastShownCliInfo = cliInfo; | ||
} | ||
if (res.status === 504 && !isRetrying) { | ||
@@ -275,0 +280,0 @@ return setTimeout(() => send(d, so, clb, true), 3000); |
179011
3069