New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

locize-cli

Package Overview
Dependencies
Maintainers
2
Versions
195
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

locize-cli - npm Package Compare versions

Comparing version 7.14.6 to 7.14.7

4

CHANGELOG.md

@@ -8,2 +8,6 @@ # locize-cli change log

## [7.14.7](https://github.com/locize/locize-cli/compare/v7.14.6...v7.14.7) - 2023-07-28
- retry on ETIMEDOUT
## [7.14.6](https://github.com/locize/locize-cli/compare/v7.14.5...v7.14.6) - 2023-05-24

@@ -10,0 +14,0 @@

6

package.json
{
"name": "locize-cli",
"version": "7.14.6",
"version": "7.14.7",
"description": "locize cli to import locales",

@@ -18,3 +18,3 @@ "main": "index.js",

"diff": "5.1.0",
"dotenv": "16.0.3",
"dotenv": "16.3.1",
"flat": "5.0.2",

@@ -38,3 +38,3 @@ "fluent_conv": "3.2.0",

"devDependencies": {
"eslint": "8.41.0",
"eslint": "8.45.0",
"gh-release": "7.0.2",

@@ -41,0 +41,0 @@ "pkg": "5.8.1"

@@ -76,2 +76,3 @@ [![npm](https://img.shields.io/npm/v/locize-cli.svg)](https://npmjs.org/package/locize-cli)

```
*Make sure to use `--ver` and not `--version` (`--version` will print the CLI version).*

@@ -207,2 +208,3 @@ or

```
*Make sure to use `--ver` and not `--version` (`--version` will print the CLI version).*

@@ -228,2 +230,3 @@

```
*Make sure to use `--ver` and not `--version` (`--version` will print the CLI version).*

@@ -230,0 +233,0 @@

@@ -36,2 +36,4 @@ const package = require('./package.json');

if (err && err.message && (
err.message.indexOf('ETIMEDOUT') > -1 || // on timeout retry
// on dns errors
err.message.indexOf('ENOTFOUND') > -1 ||

@@ -38,0 +40,0 @@ err.message.indexOf('ENODATA') > -1 ||

@@ -574,2 +574,3 @@ const fs = require('fs');

console.log(colors.grey('checking remote (locize)...'));
getRemoteLanguages(opt, (err, remoteLanguages) => {

@@ -583,2 +584,3 @@ if (err) return handleError(err, cb);

if (opt.referenceLanguageOnly) {
console.log(colors.grey('checking local (reference language)...'));
parseLocalReference(opt, (err, localNamespaces) => {

@@ -592,2 +594,3 @@ if (err) return handleError(err, cb);

console.log(colors.grey('calculate diffs...'));
handleSync(opt, remoteLanguages, localNamespaces, cb);

@@ -598,2 +601,3 @@ });

console.log(colors.grey('checking local...'));
parseLocalLanguages(opt, remoteLanguages, (err, localNamespaces) => {

@@ -607,2 +611,3 @@ if (err) return handleError(err, cb);

console.log(colors.grey('calculate diffs...'));
handleSync(opt, remoteLanguages, localNamespaces, cb);

@@ -609,0 +614,0 @@ });

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc