@adobe/aio-cli-plugin-config
Advanced tools
Comparing version 4.0.1-pre.2023-06-15.c878dea0 to 4.0.1-pre.2024-01-09.f59cb945
{ | ||
"version": "4.0.1-pre.2023-06-15.c878dea0", | ||
"version": "4.0.1-pre.2024-01-09.f59cb945", | ||
"commands": { | ||
@@ -4,0 +4,0 @@ "config:clear": { |
{ | ||
"name": "@adobe/aio-cli-plugin-config", | ||
"description": "Config Plugin for the Adobe I/O CLI", | ||
"version": "4.0.1-pre.2023-06-15.c878dea0", | ||
"version": "4.0.1-pre.2024-01-09.f59cb945", | ||
"author": "Adobe Inc.", | ||
@@ -11,28 +11,30 @@ "bugs": "https://github.com/adobe/aio-cli-plugin-config/issues", | ||
"hjson": "^3.2.2", | ||
"js-yaml": "^3.14.1" | ||
"js-yaml": "^4.1.0" | ||
}, | ||
"devDependencies": { | ||
"@adobe/eslint-config-aio-lib-config": "^1.4.0", | ||
"@adobe/eslint-config-aio-lib-config": "^2.0.1", | ||
"acorn": "^8.7.0", | ||
"chalk": "^4.0.0", | ||
"eslint": "^7.32.0", | ||
"eslint": "^8.46.0", | ||
"eslint-config-oclif": "^4.0.0", | ||
"eslint-config-standard": "^16.0.3", | ||
"eslint-plugin-import": "^2.25.3", | ||
"eslint-plugin-jest": "^23.20.0", | ||
"eslint-plugin-jsdoc": "^37.2.0", | ||
"eslint-config-standard": "^17.1.0", | ||
"eslint-plugin-import": "^2.28.0", | ||
"eslint-plugin-jest": "^27.2.3", | ||
"eslint-plugin-jsdoc": "^42.0.0", | ||
"eslint-plugin-n": "^15.7", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^5.2.0", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"execa": "^4.0.2", | ||
"globby": "^11.0.0", | ||
"jest": "^28", | ||
"jest-haste-map": "^27.5.1", | ||
"jest-junit": "^13.0.0", | ||
"jest-resolve": "^27.5.1", | ||
"jest": "^29", | ||
"jest-haste-map": "^29.5.0", | ||
"jest-junit": "^16.0.0", | ||
"jest-resolve": "^29.5.0", | ||
"oclif": "^3.2.0", | ||
"stdout-stderr": "^0.1.13" | ||
"stdout-stderr": "^0.1.13", | ||
"typescript": "^5.1.6" | ||
}, | ||
"engines": { | ||
"node": "^14.18 || ^16.13 || >=18" | ||
"node": ">=18" | ||
}, | ||
@@ -71,3 +73,3 @@ "files": [ | ||
}, | ||
"prereleaseSha": "c878dea00dab40e2d7b8e7ac375926af1ae342d0" | ||
"prereleaseSha": "f59cb945816ae6c0062bee1e45ab6de3c4a8dead" | ||
} |
@@ -82,3 +82,3 @@ <!-- | ||
_See code: [src/commands/config/index.js](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2023-06-15.c878dea0/src/commands/config/index.js)_ | ||
_See code: [src/commands/config/index.ts](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2024-01-09.f59cb945/src/commands/config/index.ts)_ | ||
@@ -102,2 +102,4 @@ ## `aio config clear` | ||
_See code: [src/commands/config/clear.ts](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2024-01-09.f59cb945/src/commands/config/clear.ts)_ | ||
## `aio config delete KEYS...` | ||
@@ -123,2 +125,4 @@ | ||
_See code: [src/commands/config/delete.ts](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2024-01-09.f59cb945/src/commands/config/delete.ts)_ | ||
## `aio config edit` | ||
@@ -140,2 +144,4 @@ | ||
_See code: [src/commands/config/edit.ts](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2024-01-09.f59cb945/src/commands/config/edit.ts)_ | ||
## `aio config get KEY` | ||
@@ -160,2 +166,4 @@ | ||
_See code: [src/commands/config/get.ts](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2024-01-09.f59cb945/src/commands/config/get.ts)_ | ||
## `aio config list` | ||
@@ -184,2 +192,4 @@ | ||
_See code: [src/commands/config/list.ts](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2024-01-09.f59cb945/src/commands/config/list.ts)_ | ||
## `aio config set key 'a value' # set key to 'a value'` | ||
@@ -206,2 +216,4 @@ | ||
``` | ||
_See code: [src/commands/config/set.ts](https://github.com/adobe/aio-cli-plugin-config/blob/4.0.1-pre.2024-01-09.f59cb945/src/commands/config/set.ts)_ | ||
<!-- commandsstop --> |
@@ -38,3 +38,3 @@ /* | ||
} else if (format === 'yaml') { | ||
this.log(yaml.safeDump(obj, { sortKeys: true, lineWidth: 1024, noCompatMode: true })) | ||
this.log(yaml.dump(obj, { sortKeys: true, lineWidth: 1024, noCompatMode: true })) | ||
} else { | ||
@@ -41,0 +41,0 @@ if (typeof obj !== 'object') { |
@@ -57,3 +57,3 @@ /* | ||
} else if (flags.yaml) { | ||
value = yaml.safeLoad(value) | ||
value = yaml.load(value) | ||
} | ||
@@ -60,0 +60,0 @@ } catch (e) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
44746
213
22
Updatedjs-yaml@^4.1.0