Comparing version 1.4.0 to 1.4.1
{ | ||
"name": "opt-cli", | ||
"version": "1.4.0", | ||
"description": "Execute CLI Statements based upon Opt-In / Out-Out Rules.", | ||
"version": "1.4.1", | ||
"description": "Execute CLI Statements based upon Opt-In / Opt-Out Rules.", | ||
"main": "lib/index.js", | ||
@@ -38,3 +38,3 @@ "bin": { | ||
"cli": "0.11.2", | ||
"lodash.clone": "4.3.1", | ||
"lodash.clone": "4.3.2", | ||
"manage-path": "2.0.0", | ||
@@ -44,15 +44,15 @@ "spawn-command": "0.0.2-1" | ||
"devDependencies": { | ||
"all-contributors-cli": "2.0.0-beta6", | ||
"ava": "0.13.0", | ||
"all-contributors-cli": "2.0.0-beta8", | ||
"ava": "0.14.0", | ||
"codecov": "1.0.1", | ||
"commitizen": "2.7.3", | ||
"commitizen": "2.7.6", | ||
"cz-conventional-changelog": "1.1.5", | ||
"eslint": "2.4.0", | ||
"eslint": "2.8.0", | ||
"eslint-config-ta2edchimp": "1.1.0", | ||
"ghooks": "1.0.3", | ||
"npm-run-all": "1.6.0", | ||
"nyc": "6.1.1", | ||
"ghooks": "1.2.1", | ||
"npm-run-all": "1.7.0", | ||
"nyc": "6.4.0", | ||
"proxyquire": "1.7.4", | ||
"semantic-release": "4.3.5", | ||
"validate-commit-msg": "2.4.1" | ||
"validate-commit-msg": "2.6.0" | ||
}, | ||
@@ -59,0 +59,0 @@ "config": { |
@@ -95,3 +95,3 @@ # opt-cli | ||
```JavaScript | ||
var opt = require( 'opt' ); | ||
var opt = require( 'opt-cli' ); | ||
``` | ||
@@ -98,0 +98,0 @@ |
@@ -45,3 +45,3 @@ import test from 'ava'; | ||
info: function mockedCliInfo( message ) { | ||
t.same( message, 'Not opted-in to "unset-opt-in-rule".' ); | ||
t.deepEqual( message, 'Not opted-in to "unset-opt-in-rule".' ); | ||
}, | ||
@@ -66,7 +66,7 @@ // prevent proxyquire from caching! | ||
'spawn-command': function mockedSpawn( command ) { | ||
t.same( command, 'echo "opt-cli bin test output #2"' ); | ||
t.deepEqual( command, 'echo "opt-cli bin test output #2"' ); | ||
return { | ||
on: ( what ) => { | ||
t.same( what, 'exit' ); | ||
t.deepEqual( what, 'exit' ); | ||
} | ||
@@ -97,3 +97,3 @@ }; | ||
info: function mockedCliInfo( message ) { | ||
t.same( message, 'Opted-out of "set-opt-out-rule".' ); | ||
t.deepEqual( message, 'Opted-out of "set-opt-out-rule".' ); | ||
}, | ||
@@ -100,0 +100,0 @@ // prevent proxyquire from caching! |
Sorry, the diff of this file is not supported yet
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
26726
+ Addedlodash.clone@4.3.2(transitive)
- Removedlodash.clone@4.3.1(transitive)
Updatedlodash.clone@4.3.2