refactor(runtime): merge "spawn" into "process" (#18022)

This commit merges "runtime/js/40_spawn.js" into
"runtime/js/40_process.js", and "runtime::ops::spawn" 
into "runtime::ops::process".

It makes little sense to have them separated given that we want to
factor out these APIs into a separate extension crate.
This commit is contained in:
Bartek Iwańczuk 2023-03-05 08:19:34 -04:00 committed by GitHub
parent d4807f458e
commit de0d148d93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 792 additions and 827 deletions

View file

@ -8,7 +8,6 @@ pub mod permissions;
pub mod process;
pub mod runtime;
pub mod signal;
pub mod spawn;
pub mod tty;
mod utils;
pub mod web_worker;