We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
neutralinojs-cli/src/modules/frontendlib.js
Line 100 in eb2bf90
This line produces a warning:
[DEP0060] DeprecationWarning: The util._extend API is deprecated. Please use Object.assign() instead.
util._extend
Because the dependency spawn-command uses outdated api (see DEP0060):
spawn-command
https://github.com/mmalecki/spawn-command/blob/78f3fa3b904b767ec4dd1c4b27c9b288eb498f03/lib/spawn-command.js#L9
The dependency is specified here:
neutralinojs-cli/package.json
Line 40 in eb2bf90
There is a newer version of spawn-command where the warning was resolved (see v1.0.0)
https://github.com/mmalecki/spawn-command/blob/ce19cf2504aff72769755aea1bd4330e020f4a25/lib/spawn-command.js#L8
Update the version of spawn-command in package.json
The text was updated successfully, but these errors were encountered:
@KosRud i have opened the PR #288
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Problem description
neutralinojs-cli/src/modules/frontendlib.js
Line 100 in eb2bf90
This line produces a warning:
Because the dependency
spawn-command
uses outdated api (see DEP0060):https://github.com/mmalecki/spawn-command/blob/78f3fa3b904b767ec4dd1c4b27c9b288eb498f03/lib/spawn-command.js#L9
The dependency is specified here:
neutralinojs-cli/package.json
Line 40 in eb2bf90
There is a newer version of
spawn-command
where the warning was resolved (see v1.0.0)https://github.com/mmalecki/spawn-command/blob/ce19cf2504aff72769755aea1bd4330e020f4a25/lib/spawn-command.js#L8
Solution
Update the version of
spawn-command
in package.jsonThe text was updated successfully, but these errors were encountered: