Compare commits

...

2 Commits

Author SHA1 Message Date
89e871ce7e v3.0.18: document for publishing 2019-11-01 05:31:21 -06:00
b556643e78 comments 2019-11-01 05:30:49 -06:00
3 changed files with 126 additions and 127 deletions

View File

@ -2,8 +2,12 @@
'use strict';
var args = process.argv.slice(2);
console.log(args);
//console.log(args);
//['certonly', 'add', 'config', 'defaults', 'remove']
if ('certonly' === args[0]) {
require('./certonly.js');
return;
}
console.error("command not yet implemented");
process.exit();

7
package-lock.json generated
View File

@ -1,6 +1,6 @@
{
"name": "@root/greenlock",
"version": "3.0.16",
"version": "3.0.18",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -73,11 +73,6 @@
"@root/encoding": "^1.0.1"
}
},
"acme-dns-01-digitalocean": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/acme-dns-01-digitalocean/-/acme-dns-01-digitalocean-3.0.1.tgz",
"integrity": "sha512-LUdOGluDERQWJG4CwlC9HbzUai4mtKzCz8nzpVTirXup2WwH60iRFAcd81hRGaoWbd0Bc0m6RVjN9YFkXB84yA=="
},
"acme-http-01-standalone": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/acme-http-01-standalone/-/acme-http-01-standalone-3.0.5.tgz",

View File

@ -1,6 +1,6 @@
{
"name": "@root/greenlock",
"version": "3.0.17",
"version": "3.0.18",
"description": "The easiest Let's Encrypt client for Node.js and Browsers",
"homepage": "https://rootprojects.org/greenlock/",
"main": "greenlock.js",