error status for helpers

This commit is contained in:
Doug Bird 2017-12-13 13:19:58 -08:00
parent b440b1de32
commit 150b8682b8
4 changed files with 13 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
.*
!/.gitignore
/vendor/
/node_modules/
composer.lock
*.log
!**.gitkeep

View File

@ -2,4 +2,6 @@
console.log("generates the 'tld-enum.js' node source file from the 'tlds.csv' csv file");
console.log("---this script is currently a 'to-do' placeholder!---");
console.error("terminating... the development for the 'JSON' format generator has not yet been completed");
console.error("terminating... the development for the 'JSON' format generator has not yet been completed");
process.exit(1);

View File

@ -1,4 +1,7 @@
#!/usr/bin/env node
console.log("generates the 'tld-list.json' JSON array file from the 'tlds.csv' csv file");
console.log("---this script is currently a 'to-do' placeholder!---");
console.error("terminating... the development for the 'JSON' format generator has not yet been completed");
console.error("terminating... the development for the 'JSON' format generator has not yet been completed");
process.exit(1);

View File

@ -1,5 +1,9 @@
#!/usr/bin/env node
console.log("generates the canonical 'tlds.csv' csv file");
console.log("downloads the 'http://data.iana.org/TLD/tlds-alpha-by-domain.txt' file and cross references it with https://www.iana.org/domains/root/db to re-generate the 'tlds.csv' csv file");
console.log("---this script is currently a 'to-do' placeholder!---");
console.error("terminating... the development for the 'JSON' format generator has not yet been completed");
console.error("terminating... the development for the canonical 'tlds.csv' generator has not yet been completed");
process.exit(1);