-
-
Notifications
You must be signed in to change notification settings - Fork 194
Conversation
Codecov Report
@@ Coverage Diff @@
## master #191 +/- ##
=========================================
Coverage ? 80.96%
=========================================
Files ? 26
Lines ? 562
Branches ? 112
=========================================
Hits ? 455
Misses ? 78
Partials ? 29
Continue to review full report at Codecov.
|
README.md
Outdated
@@ -1,5 +1,5 @@ | |||
<h1 align="center"> | |||
<img src="https://raw.githubusercontent.com/shipitjs/shipit/master/ressources/shipit-logo.png" alt="Shipit" title="Shipit" width="500"> | |||
<img src="./resources/shipit-logo.png" alt="Shipit" title="Shipit" width="500"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Broken in diff.
.gitignore
Outdated
@@ -2,3 +2,4 @@ node_modules/ | |||
packages/*/lib | |||
coverage/ | |||
.eslintcache | |||
.DS_Store |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be in your global .gitignore
, please remove it.
package.json
Outdated
"workspaces": [ | ||
"packages/*" | ||
], | ||
"dependencies": {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unnecessary changes please, remove it.
packages/shipit-cli/src/Shipit.js
Outdated
@@ -158,6 +158,7 @@ class Shipit extends Orchestrator { | |||
...this.options, | |||
key: this.config.key, | |||
strict: this.config.strict, | |||
verbosityLevel: Object.is(this.config.verboseSSHLevel, undefined) ? 0 : this.config.verboseSSHLevel |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think Object.is
is not compatible with old version, ===
will be fine.
Thanks for your PR, just a few minor changes please. |
@neoziro Updated! 😃 |
@mitchtreece good! A last thing, can you please update all readme to reflect the change? |
@neoziro You got it. Updated! 🎉 |
I think you missed this one https://github.com/shipitjs/shipit/blob/master/packages/ssh-pool/README.md |
@neoziro Oops. Should be good now! |
Thanks! |
Added the ability to specify an optional SSH verbosity level in the shipit configuration file.