Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cute-localize

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cute-localize - npm Package Compare versions

Comparing version 0.1.15 to 0.1.16

9

bin/clupdate.js

@@ -26,2 +26,3 @@ #!/usr/bin/env node

.option("-G, --no-use-gitignore", "Do not use 'git check-ignore' to exclude files/directories")
.option("-X, --excluded-paths", "Exclude files/directories whose paths contain the patterns specified")
.option("-v, --verbose", "Print error messages")

@@ -44,2 +45,4 @@ .parse(process.argv);

var excludedPatterns = excludedPaths || [];
var defaultString = program.defaultString || {}; //NODE: To use with 'typeof defaultString == "object"'

@@ -158,2 +161,8 @@

}
var shouldExclude = excludedPaths.some(function(ep) {
return (dirName + "/" + fileName).indexOf(ep) >= 0;
});
if (shouldExclude) {
return;
}
var stats = FS.statSync(dirName + "/" + fileName);

@@ -160,0 +169,0 @@ if (stats.isDirectory())

2

package.json
{
"name": "cute-localize",
"version": "0.1.15",
"version": "0.1.16",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -176,2 +176,3 @@ Simple and powerful i18n module for Node.js

-G, --no-use-gitignore Do not use 'git check-ignore' to exclude files/directories
-X, --excluded-paths Exclude files/directories whose paths contain the patterns specified
-v, --verbose Print error messages

@@ -178,0 +179,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