From 38392fe872e2f34c0da5419c562b147fc8391cee Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 30 Nov 2019 13:52:55 -0700 Subject: [PATCH] v3.1.0: update deps --- README.md | 14 +++++++------- package-lock.json | 8 ++++---- package.json | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 115a3e5..12c46bf 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Saves global and per-site config to a local File Sytem (current), with optional ## Install ```bash -npm install --save greenlock@3 +npm install --save greenlock@4 npm install --save greenlock-manager@3 ``` @@ -16,13 +16,13 @@ npm install --save greenlock-manager@3 To enable encrypted cloud backup, when it becomes available: ```js -npx greenlock init --manager cloud --manager-config-file './greenlock.json' +npx greenlock init --manager cloud --config-dir './greenlock.d' ``` For local file system only: ```js -npx greenlock init --manager fs --manager-config-file './greenlock.json' +npx greenlock init --manager fs --config-dir './greenlock.d' ``` Or, place this file in the root of your project: @@ -31,8 +31,8 @@ Or, place this file in the root of your project: ```json { - "manager": "@greenlock/manager", - "configFile": "./greenlock.json" + "manager": { "module": "@greenlock/manager" }, + "configDir": "./greenlock.d" } ``` @@ -49,7 +49,7 @@ Instead, use the CLI (current) or Web API (coming soon). ## Initialize the Manager ```bash -npx greenlock init --manager cloud --manager-config-file './greenlock.json' +npx greenlock init --manager cloud --config-dir './greenlock.d' ``` Note: You **should not** initialize greenlock directly as @@ -61,7 +61,7 @@ Instead use the file generated by the CLI `init` (shown above). Greenlock.create({ manager: "@greenlock/manager", cloud: true, - configFile: "./greenlock.json", + configDir: "./greenlock.d", packageRoot: __dirname }); ``` diff --git a/package-lock.json b/package-lock.json index c3bee70..586caae 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@greenlock/manager", - "version": "3.0.0", + "version": "3.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -16,9 +16,9 @@ "dev": true }, "greenlock-manager-fs": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-3.0.5.tgz", - "integrity": "sha512-r/q+tEFuDwklfzPfiGhcIrHuJxMrppC+EseESpu5f0DMokh+1iZVm9nGC/VE7/7GETdOYfEYhhQkmspsi8Gr/A==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-3.1.0.tgz", + "integrity": "sha512-xS3N7rmEH4s75yi7wSVbAmOaxKbmD9i8s1m64oIiv9y9gl0yOfa5ADr0EBY4YaZP22jJyRbJYvq0veRTwciUeA==", "requires": { "@root/mkdirp": "^1.0.0", "safe-replace": "^1.1.0" diff --git a/package.json b/package.json index 22973d4..dd1c6ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@greenlock/manager", - "version": "3.0.1", + "version": "3.1.0", "description": "FileSytem-based Manager with optional encrypted Cloud backup for Greenlock SSL", "main": "manager.js", "files": [ @@ -26,7 +26,7 @@ "author": "AJ ONeal (https://coolaj86.com/)", "license": "MPL-2.0", "dependencies": { - "greenlock-manager-fs": "^3.0.5" + "greenlock-manager-fs": "^3.1.0" }, "devDependencies": { "greenlock-manager-test": "^3.1.1"