v3.1.0: update deps
This commit is contained in:
parent
d2ca6038dc
commit
38392fe872
14
README.md
14
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
|
||||
});
|
||||
```
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 <coolaj86@gmail.com> (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"
|
||||
|
|
Loading…
Reference in New Issue