@monstermakes/larry-cli
Advanced tools
Comparing version 0.3.2 to 0.3.4
module.exports = { | ||
"plugins": [ | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"ecmaVersion": 2020 | ||
}, | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"no-console": ["error"], | ||
"no-prototype-builtins": "off", | ||
"no-unused-vars": ["error", { "args": "none" }], | ||
"indent": [ | ||
"warn", | ||
"tab" | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"warn", | ||
"single", | ||
{ "allowTemplateLiterals": true } | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
] | ||
} | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"mocha": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"indent": [ | ||
"warn", | ||
"tab" | ||
], | ||
"linebreak-style": [ | ||
"error", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"warn", | ||
"single" | ||
], | ||
"semi": [ | ||
"error", | ||
"always" | ||
] | ||
} | ||
}; |
@@ -6,3 +6,3 @@ # Change Log | ||
## [0.3.2](https://github.com/MonsterMakes/larry-cli/compare/@monstermakes/larry-cli@0.3.1...@monstermakes/larry-cli@0.3.2) (2021-04-29) | ||
## [0.3.4](https://github.com/MonsterMakes/larry-cli/compare/@monstermakes/larry-cli@0.3.2...@monstermakes/larry-cli@0.3.4) (2022-03-29) | ||
@@ -12,3 +12,3 @@ | ||
* make eslint rules consistent ([790add5](https://github.com/MonsterMakes/larry-cli/commit/790add52dfa7e8e7f95a5a846fcbac6eb1867273)) | ||
* **larry-bnd:** WIP ([106d715](https://github.com/MonsterMakes/larry-cli/commit/106d7151437e8ffbb12f762475f5475ac7dcf39a)) | ||
@@ -19,2 +19,13 @@ | ||
## [0.3.3](https://github.com/MonsterMakes/larry-cli/compare/@monstermakes/larry-cli@0.3.2...@monstermakes/larry-cli@0.3.3) (2022-03-29) | ||
### Bug Fixes | ||
* **larry-bnd:** WIP ([106d715](https://github.com/MonsterMakes/larry-cli/commit/106d7151437e8ffbb12f762475f5475ac7dcf39a)) | ||
## [0.3.1](https://github.com/MonsterMakes/larry-cli/compare/@monstermakes/larry-cli@0.3.0...@monstermakes/larry-cli@0.3.1) (2020-06-19) | ||
@@ -21,0 +32,0 @@ |
{ | ||
"name": "@monstermakes/larry-cli", | ||
"description": "A common base for building command line applications.", | ||
"version": "0.3.2", | ||
"version": "0.3.4", | ||
"bin": {}, | ||
@@ -14,3 +14,3 @@ "publishConfig": {}, | ||
"lint-fix": "echo '=> Fixing Linting errors...' && eslint {src,test}/**/*.js --fix", | ||
"lint": "echo '=> Linting' && eslint {src,test}/**/*.js", | ||
"lint": "echo '=> Linting' && eslint **/*.js", | ||
"test": "echo '=> Running Tests' && mocha -u tdd --timeout 60000 --colors test/**/*.spec.js", | ||
@@ -31,7 +31,7 @@ "test-coverage": "echo '=> Running Tests w/ Coverage' && nyc mocha test/**/*.spec.js", | ||
"chai-files": "^1.4.0", | ||
"eslint": "^7.25.0", | ||
"eslint": "^4.17.0", | ||
"mocha": "^5.0.0", | ||
"nyc": "^11.4.1" | ||
}, | ||
"gitHead": "593928ee0af64a69fa9cf7e87a617d77cd2d3f3d" | ||
"gitHead": "37b1a6b36334e7f2dbca293589fba40a596c9ac7" | ||
} |
@@ -42,3 +42,3 @@ 'use strict'; | ||
return prom.then((subCliName) => { | ||
if(self._subModulesRegistry.hasOwnProperty(subCliName)){ | ||
if(self._subModulesRegistry.hasOwnProperty(subCliName)){ //eslint-disable-line | ||
self.clear(); | ||
@@ -45,0 +45,0 @@ self._subModulesRegistry[subCliName].show(); |
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
10537
238