-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conver to ts #57
base: master
Are you sure you want to change the base?
Conver to ts #57
Conversation
src/processutils.ts
Outdated
const stdOutMaxSize = options.stdOutMaxSize || maxSize | ||
const stdErrMaxSize = options.stdErrMaxSize || maxSize | ||
|
||
const promise = new Promise((resolve, reject) => { |
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.
const promise = new Promise((resolve, reject) => { | |
const promise = new Promise<ProcessResult>((resolve, reject) => { |
If you do this, then the redundant piece in L66-L73 can be removed
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.
You committed my changes, but didn't remove the any
in what is now L55
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.
and L67
A general comment would be that it could be neat to change those |
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
SonarCloud Quality Gate failed. 0 Bugs No Coverage information Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
Co-authored-by: Christian Danielsen <[email protected]>
SonarCloud Quality Gate failed. 0 Bugs No Coverage information Catch issues before they fail your Quality Gate with our IDE extension SonarLint |
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.
See my comments in regards to the old unresolved comments
[sc-92548]