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
|
## Install
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install --save greenlock@3
|
npm install --save greenlock@4
|
||||||
npm install --save greenlock-manager@3
|
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:
|
To enable encrypted cloud backup, when it becomes available:
|
||||||
|
|
||||||
```js
|
```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:
|
For local file system only:
|
||||||
|
|
||||||
```js
|
```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:
|
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
|
```json
|
||||||
{
|
{
|
||||||
"manager": "@greenlock/manager",
|
"manager": { "module": "@greenlock/manager" },
|
||||||
"configFile": "./greenlock.json"
|
"configDir": "./greenlock.d"
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ Instead, use the CLI (current) or Web API (coming soon).
|
||||||
## Initialize the Manager
|
## Initialize the Manager
|
||||||
|
|
||||||
```bash
|
```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
|
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({
|
Greenlock.create({
|
||||||
manager: "@greenlock/manager",
|
manager: "@greenlock/manager",
|
||||||
cloud: true,
|
cloud: true,
|
||||||
configFile: "./greenlock.json",
|
configDir: "./greenlock.d",
|
||||||
packageRoot: __dirname
|
packageRoot: __dirname
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@greenlock/manager",
|
"name": "@greenlock/manager",
|
||||||
"version": "3.0.0",
|
"version": "3.1.0",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
@ -16,9 +16,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"greenlock-manager-fs": {
|
"greenlock-manager-fs": {
|
||||||
"version": "3.0.5",
|
"version": "3.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-3.0.5.tgz",
|
"resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-3.1.0.tgz",
|
||||||
"integrity": "sha512-r/q+tEFuDwklfzPfiGhcIrHuJxMrppC+EseESpu5f0DMokh+1iZVm9nGC/VE7/7GETdOYfEYhhQkmspsi8Gr/A==",
|
"integrity": "sha512-xS3N7rmEH4s75yi7wSVbAmOaxKbmD9i8s1m64oIiv9y9gl0yOfa5ADr0EBY4YaZP22jJyRbJYvq0veRTwciUeA==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"@root/mkdirp": "^1.0.0",
|
"@root/mkdirp": "^1.0.0",
|
||||||
"safe-replace": "^1.1.0"
|
"safe-replace": "^1.1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@greenlock/manager",
|
"name": "@greenlock/manager",
|
||||||
"version": "3.0.1",
|
"version": "3.1.0",
|
||||||
"description": "FileSytem-based Manager with optional encrypted Cloud backup for Greenlock SSL",
|
"description": "FileSytem-based Manager with optional encrypted Cloud backup for Greenlock SSL",
|
||||||
"main": "manager.js",
|
"main": "manager.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"greenlock-manager-fs": "^3.0.5"
|
"greenlock-manager-fs": "^3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"greenlock-manager-test": "^3.1.1"
|
"greenlock-manager-test": "^3.1.1"
|
||||||
|
|
Loading…
Reference in New Issue