Skip to content
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

feat(node): Basic support for child_process.spawn #785

Merged
merged 27 commits into from
Apr 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
2672431
feat(node): Basic support for `child_process.spawn`
uki00a Mar 4, 2021
9ab4784
fix: Remove `encoding` option and try to fix flaky tests
uki00a Mar 5, 2021
c25d94e
fix: Stop calling `resume()` when creating `Readable` streams
uki00a Mar 6, 2021
121e4ef
feat(node/child_process): Add support for `windowsVerbatimArguments` …
uki00a Mar 7, 2021
ac9d4ee
Merge branch 'main' into implement-child-process-spawn
uki00a Mar 7, 2021
41f58d3
chore(windows): Enable an ignored test
uki00a Mar 13, 2021
17517b6
fix(windows): Stop quoting `command`
uki00a Mar 13, 2021
7d33369
Merge branch 'main' into implement-child-process-spawn
uki00a Mar 13, 2021
f8b53be
fix(windows): Remove `quoteCmdArg()` and try to fix escaping problems
uki00a Mar 20, 2021
89d9dc0
fix: Remove `parseCmdline()` function and ignore some tests on Windows
uki00a Mar 27, 2021
220f4c4
fix: Forgot to remove an unnecessary import
uki00a Mar 27, 2021
95b7fad
chore: Run "deno fmt"
uki00a Mar 27, 2021
22d9ed2
fix: Fix flakiness in native node tests
uki00a Apr 3, 2021
0b83a04
fix: Port `parallel/test-child-process-spawn-event.js`
uki00a Apr 11, 2021
3151100
chore: Ignore "Verify that passing arguments works" case on Windows
uki00a Apr 11, 2021
d5fca7b
fix: Preserve line feeds
uki00a Apr 12, 2021
8328b20
chore: Revert node/_tools/test.ts
uki00a Apr 12, 2021
4335563
Merge branch 'main' into implement-child-process-spawn
uki00a Apr 12, 2021
053f9de
chore: Run "deno fmt"
uki00a Apr 12, 2021
ca99476
fix: Ignore unimplemented options
uki00a Apr 12, 2021
a3c215f
docs: Add more JSDoc comments and update node/README.md
uki00a Apr 12, 2021
f7f0666
chore: Add and fix comments
uki00a Apr 15, 2021
e17bb45
chore: Update node/module_test.ts
uki00a Apr 15, 2021
7e4e343
chore: Tweak a comment
uki00a Apr 15, 2021
9e38473
fix: Prevent the "operation canceled" error to occur
uki00a Apr 18, 2021
4223ff6
Merge branch 'main' into implement-child-process-spawn
uki00a Apr 18, 2021
3c8549b
Merge branch 'main' into implement-child-process-spawn
kt3k Apr 21, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ deno standard library as it's a compatibility module.

- [x] assert _partly_
- [x] buffer
- [ ] child_process
- [x] child_process _partly_
- [ ] cluster
- [ ] console
- [x] constants _partly_
Expand Down
Loading