-
Notifications
You must be signed in to change notification settings - Fork 999
Use cross-spawn & shelljs instead of child-process #478
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,6 +27,7 @@ var proc = require('child_process'); | |
| * @param {String} opt_cwd Working directory for command | ||
| * @param {String} opt_verbosity Verbosity level for command stdout output, "verbose" by default | ||
| * @return {Promise} Promise either fullfilled or rejected with error code | ||
| * @deprecated Use `require('cordova-common').superspawn` instead. | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd be inclined to just remove this outright in the next major, but I guess technically we don't know if anything else used it so we should go through one major cycle with it marked deprecated 🙁 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I also would favor updating
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm somewhat resistant to just So I'd rather leave it as is, unless someone has a very specific suggestion on how to approach the issue. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Got it. I would like to raise to finish raising another PR to add the deprecation message, for separate discussion, before we resolving this conversation. |
||
| */ | ||
| module.exports = function (cmd, args, opt_cwd) { | ||
| var d = Q.defer(); | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.