@anycli/plugins
Advanced tools
+8
-0
@@ -0,1 +1,9 @@ | ||
| <a name="0.1.8"></a> | ||
| ## [0.1.8](https://github.com/anycli/plugins/compare/76f1ac5f3dc9724420762c3c62d1ad7c742a4b06...v0.1.8) (2018-01-31) | ||
| ### Bug Fixes | ||
| * fixed global config defaults ([b769c55](https://github.com/anycli/plugins/commit/b769c55)) | ||
| <a name="0.1.7"></a> | ||
@@ -2,0 +10,0 @@ ## [0.1.7](https://github.com/anycli/plugins/compare/68671d031658b0dcb72579a98da64042fed225da...v0.1.7) (2018-01-31) |
@@ -15,5 +15,6 @@ "use strict"; | ||
| const g = global; | ||
| if (g.config) { | ||
| bin = g.config.bin; | ||
| let pjson = g.config.pjson['cli-engine']; | ||
| if (g.anycli && g.anycli.config) { | ||
| const config = g.anycli.config; | ||
| bin = config; | ||
| let pjson = config.pjson.anycli || config.pjson['cli-engine']; | ||
| if (pjson.help && pjson.help.plugins) { | ||
@@ -20,0 +21,0 @@ examplePlugins = pjson.help.plugins; |
@@ -9,5 +9,6 @@ "use strict"; | ||
| const g = global; | ||
| if (g.config) { | ||
| bin = g.config.bin; | ||
| let pjson = g.config.pjson.anycli; | ||
| if (g.anycli && g.anycli.config) { | ||
| const config = g.anycli.config; | ||
| bin = config.bin; | ||
| let pjson = config.pjson.anycli || config.pjson['cli-engine']; | ||
| if (pjson.help && pjson.help.plugins) { | ||
@@ -14,0 +15,0 @@ examplePlugin = Object.keys(pjson.help.plugins)[0]; |
@@ -9,5 +9,6 @@ "use strict"; | ||
| const g = global; | ||
| if (g.config) { | ||
| bin = g.config.bin; | ||
| let pjson = g.config.pjson.anycli; | ||
| if (g.anycli && g.anycli.config) { | ||
| const config = g.anycli.config; | ||
| bin = config.bin; | ||
| let pjson = config.pjson.anycli || config.pjson['cli-engine']; | ||
| if (pjson.help && pjson.help.plugins) { | ||
@@ -14,0 +15,0 @@ examplePlugin = Object.keys(pjson.help.plugins)[0]; |
+5
-5
| { | ||
| "name": "@anycli/plugins", | ||
| "description": "plugins plugin for anycli", | ||
| "version": "0.1.7", | ||
| "version": "0.1.8", | ||
| "author": "Jeff Dickey @jdxcode", | ||
@@ -9,3 +9,3 @@ "bugs": "https://github.com/jdxcode/plugins/issues", | ||
| "@anycli/command": "^0.2.6", | ||
| "@anycli/config": "^0.2.0", | ||
| "@anycli/config": "^0.2.1", | ||
| "@anycli/manifest-file": "^0.2.0", | ||
@@ -22,5 +22,5 @@ "@heroku-cli/color": "^1.1.1", | ||
| "devDependencies": { | ||
| "@anycli/engine": "^0.1.26", | ||
| "@anycli/test": "^0.9.19", | ||
| "@anycli/tslint": "^0.1.3", | ||
| "@anycli/engine": "^0.1.29", | ||
| "@anycli/test": "^0.10.0", | ||
| "@anycli/tslint": "^0.2.0", | ||
| "@commitlint/cli": "^6.0.2", | ||
@@ -27,0 +27,0 @@ "@commitlint/config-conventional": "^6.0.2", |
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 5 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 5 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
19691
2.5%417
0.72%Updated