Comparing version 26.0.4 to 26.0.6
@@ -12,3 +12,2 @@ /** | ||
var cldrDownloader = require("cldr-data-downloader"); | ||
var exit = process.exit; | ||
var path = require("path"); | ||
@@ -31,6 +30,12 @@ var urls = require("./urls"); | ||
if (error) { | ||
console.error("Whops", error.message); | ||
exit(1); | ||
if (/E_ALREADY_INSTALLED/.test(error.code)) { | ||
error.message = error.message.replace(/Use `options.*/, "Use -f to " + | ||
"override."); | ||
return console.log(error.message); | ||
} else { | ||
console.error("Whops", error.message); | ||
process.exit(1); | ||
} | ||
} | ||
} | ||
); |
{ | ||
"name": "cldr-data", | ||
"version": "26.0.4", | ||
"version": "26.0.6", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "unicode", |
@@ -54,4 +54,15 @@ # Npm's cldr-data | ||
### Locale coverage | ||
By default, the locale coverage installed is `core`, which Unicode defines as | ||
the top tier languages and is equivalent to the `json.zip` content. If you need | ||
full locale coverage, use `CLDR_COVERAGE` environment variable to modify the | ||
installation behavior. For example: | ||
``` | ||
$ CLDR_COVERAGE=full npm install | ||
``` | ||
## License | ||
MIT © [Rafael Xavier de Souza](http://rafael.xavier.blog.br) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8459
97
68