cross-spawn-cb 0.6.17 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/cross-spawn-6.0.5.js +677 -0
- package/dist/cjs/constants.js +1 -6
- package/dist/cjs/index.js +31 -10
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/polyfills.js +1 -6
- package/dist/cjs/polyfills.js.map +1 -1
- package/dist/cjs/spawn.js +5 -0
- package/dist/cjs/spawn.js.map +1 -0
- package/dist/cjs/spawnCallback.js +17 -12
- package/dist/cjs/spawnCallback.js.map +1 -1
- package/dist/cjs/{spawnSyncCallback.js → spawnCallbackSync.js} +17 -18
- package/dist/cjs/spawnCallbackSync.js.map +1 -0
- package/dist/types/index.d.mts +4 -0
- package/dist/types/spawn.d.ts +2 -0
- package/dist/types/spawnCallback.d.ts +6 -2
- package/dist/types/spawnCallbackSync.d.ts +6 -0
- package/package.json +16 -14
- package/dist/cjs/cross-spawn-6.0.5.js +0 -570
- package/dist/cjs/cross-spawn-6.0.5.js.map +0 -1
- package/dist/cjs/spawnSyncCallback.js.map +0 -1
- package/dist/types/cross-spawn-6.0.5.d.ts +0 -36
- package/dist/types/index.d.ts +0 -6
- package/dist/types/spawnSyncCallback.d.ts +0 -2
- /package/dist/types/{polyfills.d.ts → polyfills.d.cts} +0 -0
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
export const __esModule: boolean;
|
|
2
|
-
export default crossSpawn.exports;
|
|
3
|
-
export namespace _enoent {
|
|
4
|
-
export { hookChildProcess };
|
|
5
|
-
export { verifyENOENT };
|
|
6
|
-
export { verifyENOENTSync };
|
|
7
|
-
export { notFoundError };
|
|
8
|
-
}
|
|
9
|
-
export function _parse(command: any, args: any, options: any): any;
|
|
10
|
-
declare function exports(command: any, args: any, options: any): any;
|
|
11
|
-
declare namespace crossSpawn { }
|
|
12
|
-
declare function spawn_1(command: any, args: any, options: any): any;
|
|
13
|
-
export function sync(command: any, args: any, options: any): any;
|
|
14
|
-
declare function hookChildProcess(cp: any, parsed: any): void;
|
|
15
|
-
declare function verifyENOENT(status: any, parsed: any): Error & {
|
|
16
|
-
code: string;
|
|
17
|
-
errno: string;
|
|
18
|
-
syscall: string;
|
|
19
|
-
path: any;
|
|
20
|
-
spawnargs: any;
|
|
21
|
-
};
|
|
22
|
-
declare function verifyENOENTSync(status: any, parsed: any): Error & {
|
|
23
|
-
code: string;
|
|
24
|
-
errno: string;
|
|
25
|
-
syscall: string;
|
|
26
|
-
path: any;
|
|
27
|
-
spawnargs: any;
|
|
28
|
-
};
|
|
29
|
-
declare function notFoundError(original: any, syscall: any): Error & {
|
|
30
|
-
code: string;
|
|
31
|
-
errno: string;
|
|
32
|
-
syscall: string;
|
|
33
|
-
path: any;
|
|
34
|
-
spawnargs: any;
|
|
35
|
-
};
|
|
36
|
-
export { spawn_1 as spawn };
|
package/dist/types/index.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
declare function _exports(command: any, args: any, options: any, callback: any): void;
|
|
2
|
-
declare namespace _exports {
|
|
3
|
-
let spawn: (command: any, args: any, options: any, callback: any) => void;
|
|
4
|
-
let sync: (command: any, args: any, options: any) => any;
|
|
5
|
-
}
|
|
6
|
-
export = _exports;
|
|
File without changes
|