feat(core): Add spawnPath child-process API with timeout/abort/terminate support, export native types, and expand README

This commit is contained in:
2025-10-17 06:15:33 +00:00
parent 528a56c358
commit 9b5668eccb
5 changed files with 476 additions and 9 deletions

View File

@@ -1,8 +1,11 @@
// node native
import * as path from 'path';
import * as url from 'url';
import type { ChildProcess } from 'child_process';
import type { Readable } from 'stream';
export { path, url };
export type { ChildProcess, Readable };
// @pushrocks scope
import * as smartfile from '@push.rocks/smartfile';