forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshelljs_v0.x.x.js
347 lines (337 loc) · 10.1 KB
/
shelljs_v0.x.x.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/**
* (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
*
* @flow
* @format
*/
'use strict';
// https://github.com/flow-typed/flow-typed/blob/master/definitions/npm/shelljs_v0.7.x/flow_v0.28.x-v0.32.x/shelljs_v0.7.x.js
declare type $npm$shelljs$Array<T> = Array<T> & $npm$shelljs$Result;
declare type $npm$shelljs$Async = Class<child_process$ChildProcess>;
declare type $npm$shelljs$Pattern = RegExp | String | string;
declare type $npm$shelljs$String = String & $npm$shelljs$Result;
declare interface $npm$shelljs$Config {
fatal: boolean;
globOpts: {
nodir: boolean,
...
};
silent: boolean;
verbose: boolean;
}
declare interface $npm$shelljs$Env {
[key: string]: string;
}
declare type $npm$shelljs$OptionsPoly<Flags: string> = {
[keys: Flags]: boolean,
...
};
declare interface $npm$shelljs$ExecThen {
(code: number, stdout: string, stderr: string): void;
}
declare type $npm$shelljs$ExecOptionsPoly<T: Object> = T & {
async?: boolean,
silent?: boolean,
...
};
declare type $npm$shelljs$ExecOpts =
$npm$shelljs$ExecOptionsPoly<child_process$execOpts>;
declare type $npm$shelljs$ExecOptsSync =
$npm$shelljs$ExecOptionsPoly<child_process$execSyncOpts>;
declare type $npm$shelljs$GrepOpts = $npm$shelljs$OptionsPoly<'-l' | '-v'>;
declare type $npm$shelljs$SedOpts = $npm$shelljs$OptionsPoly<'-i'>;
declare type $npm$shelljs$SortOpts = $npm$shelljs$OptionsPoly<'-n' | '-r'>;
declare type $npm$shelljs$TestOpts =
| '-b'
| '-c'
| '-d'
| '-e'
| '-f'
| '-L'
| '-p'
| '-S';
declare type $npm$shelljs$TouchOpts = {
[key: '-a' | '-c' | '-m']: boolean,
'-d'?: string,
'-r'?: string,
...
};
// dupe from flow lib until we can import
declare interface $npm$shelljs$FileStats {
atime: Date;
birthtime: Date; // FIXME: add to flow lib
blksize: number;
blocks: number;
ctime: Date;
dev: number;
gid: number;
ino: number;
mode: number;
mtime: Date;
name: string; // NOTE: specific to shelljs
nlink: number;
rdev: number;
size: number;
uid: number;
isBlockDevice(): boolean;
isCharacterDevice(): boolean;
isDirectory(): boolean;
isFIFO(): boolean;
isFile(): boolean;
isSocket(): boolean;
isSymbolicLink(): boolean;
}
declare interface $npm$shelljs$Result {
code: number;
stdout: string;
stderr: string;
to(file: string): $npm$shelljs$String;
toEnd(file: string): $npm$shelljs$String;
cat: (rest: void) => $npm$shelljs$String;
exec: ((
cmd: string,
opts: $npm$shelljs$ExecOpts & {async: true, ...},
then: $npm$shelljs$ExecThen,
rest: void,
) => $npm$shelljs$Async) &
((
cmd: string,
opts: $npm$shelljs$ExecOpts & {async: true, ...},
rest: void,
) => $npm$shelljs$Async) &
((
cmd: string,
opts: $npm$shelljs$ExecOptsSync,
rest: void,
) => $npm$shelljs$String) &
((cmd: string, rest: void) => $npm$shelljs$String) &
((
cmd: string,
then: $npm$shelljs$ExecThen,
rest: void,
) => $npm$shelljs$Async);
grep: ((
opts: $npm$shelljs$GrepOpts,
rx: $npm$shelljs$Pattern,
rest: void,
) => $npm$shelljs$String) &
((rx: $npm$shelljs$Pattern, rest: void) => $npm$shelljs$String);
head: ((num: number, rest: void) => $npm$shelljs$String) &
((rest: void) => $npm$shelljs$String);
sed: (
rx: $npm$shelljs$Pattern,
subst: string,
rest: void,
) => $npm$shelljs$String;
sort: ((opts: $npm$shelljs$SortOpts, rest: void) => $npm$shelljs$String) &
((rest: void) => $npm$shelljs$String);
tail: ((num: number, rest: void) => $npm$shelljs$String) &
((rest: void) => $npm$shelljs$String);
}
declare module 'shelljs' {
declare export type ShellArray<T> = $npm$shelljs$Array<T>;
declare export type ShellAsync = $npm$shelljs$Async;
declare export type ShellOptionsPoly<Flags: string> =
$npm$shelljs$OptionsPoly<Flags>;
declare export type ShellConfig = $npm$shelljs$Config;
declare export type ShellEnv = $npm$shelljs$Env;
declare export type ShellFileStats = $npm$shelljs$FileStats;
declare export type ShellPattern = $npm$shelljs$Pattern;
declare export type ShellResult = $npm$shelljs$Result;
declare export type ShellString = $npm$shelljs$String;
declare export type ChmodOpts = ShellOptionsPoly<'-R' | '-c' | '-v'>;
declare export type CpOpts = ShellOptionsPoly<
'-P' | '-L' | '-R' | '-f' | '-n',
>;
declare export type DirsOpts = '-c';
declare export // FIXME
type DirsIdx =
| '-0'
| '-1'
| '-2'
| '-3'
| '-4'
| '-5'
| '-6'
| '-7'
| '-8'
| '-9'
| '-10'
| '-11'
| '-12'
| '-13'
| '-14'
| '-15'
| '-16'
| '-17'
| '-18'
| '-19'
| '-20'
| '-21'
| '-22'
| '-23'
| '-24'
| '-25'
| '-26'
| '-27'
| '-28'
| '-29'
| '-30'
| '-31'
| '+0'
| '+1'
| '+2'
| '+3'
| '+4'
| '+5'
| '+6'
| '+7'
| '+8'
| '+9'
| '+10'
| '+11'
| '+12'
| '+13'
| '+14'
| '+15'
| '+16'
| '+17'
| '+18'
| '+19'
| '+20'
| '+21'
| '+22'
| '+23'
| '+24'
| '+25'
| '+26'
| '+27'
| '+28'
| '+29'
| '+30'
| '+31';
declare export type ExecOpts = $npm$shelljs$ExecOpts;
declare export type ExecOptsSync = $npm$shelljs$ExecOptsSync;
declare export type ExecThen = $npm$shelljs$ExecThen;
declare export type GrepOpts = $npm$shelljs$GrepOpts;
declare export type LnOpts = ShellOptionsPoly<'-f' | '-s'>;
declare export type LsOpts = ShellOptionsPoly<'-A' | '-R' | '-d' | '-l'>;
declare export type MkdirOpts = ShellOptionsPoly<'-p'>;
declare export type MvOpts = ShellOptionsPoly<'-f' | '-n'>;
declare export type PopdOpts = ShellOptionsPoly<'-n'>;
declare export type PushdOpts = ShellOptionsPoly<'-n'>;
declare export type RmOpts = ShellOptionsPoly<'-f' | '-r'>;
declare export type SedOpts = $npm$shelljs$SedOpts;
declare export type SortOpts = $npm$shelljs$SortOpts;
declare export type TestOpts = $npm$shelljs$TestOpts;
declare export type TouchOpts = $npm$shelljs$TouchOpts;
declare module.exports: {
ShellString: ((
stdout: string,
stderr?: string,
code?: number,
) => ShellString) &
(<T>(stdout: T[], stderr?: string, code?: number) => ShellArray<T>),
config: ShellConfig,
env: ShellEnv,
cat: (glob: string, ...rest: string[]) => ShellString,
cd: ((dir: string, rest: void) => ShellString) &
((rest: void) => ShellString),
chmod: ((
opts: ChmodOpts,
mode: number | string,
glob: string,
...rest: string[]
) => ShellString) &
((mode: number | string, glob: string, ...rest: string[]) => ShellString),
cp: ((
opts: CpOpts,
src: string,
next: string,
...rest: string[]
) => ShellString) &
((src: string, next: string, ...rest: string[]) => ShellString),
dirs: ((idxOrOpts: DirsIdx | DirsOpts, rest: void) => string[]) &
((rest: void) => string[]),
echo: (...rest: (number | string | String)[]) => ShellString, // FIXME: consider allowing more input types
error: (rest: void) => ?string,
exec: ((
cmd: string,
opts: ExecOpts & {async: true, ...},
then: ExecThen,
rest: void,
) => ShellAsync) &
((
cmd: string,
opts: ExecOpts & {async: true, ...},
rest: void,
) => ShellAsync) &
((cmd: string, opts: ExecOptsSync, rest: void) => ShellString) &
((cmd: string, rest: void) => ShellString) &
((cmd: string, then: ExecThen, rest: void) => ShellAsync),
exit: ((code: number, rest: void) => void) & ((rest: void) => void),
find: (glob: string, ...rest: string[]) => ShellArray<string>,
grep: ((
opts: GrepOpts,
rx: ShellPattern,
glob: string,
...rest: string[]
) => ShellString) &
((rx: ShellPattern, glob: string, ...rest: string[]) => ShellString),
head: ((num: number, glob: string, ...rest: string[]) => ShellString) &
((glob: string, ...rest: string[]) => ShellString),
ln: ((opts: LnOpts, src: string, tgt: string, rest: void) => ShellString) &
((src: string, tgt: string, rest: void) => ShellString),
ls: ((
opts: LsOpts & {'-l': true, ...},
glob: string,
...rest: string[]
) => ShellArray<ShellFileStats>) &
((opts: LsOpts, glob: string, ...rest: string[]) => ShellArray<string>) &
((glob: string, ...rest: string[]) => ShellArray<string>),
mkdir: ((opts: MkdirOpts, dir: string, ...rest: string[]) => ShellString) &
((dir: string, ...rest: string[]) => ShellString),
mv: ((
opts: MvOpts,
src: string,
next: string,
...rest: string[]
) => ShellString) &
((src: string, next: string, ...rest: string[]) => ShellString),
popd: ((opts: PopdOpts, idx: string, rest: void) => string[]) &
((opts: PopdOpts, rest: void) => string[]) &
((idx: string, rest: void) => string[]) &
((rest: void) => string[]),
pushd: ((opts: PushdOpts, dirOrIdx: string, rest: void) => string[]) &
((dirOrIdx: string, rest: void) => string[]),
pwd: (rest: void) => ShellString,
rm: ((opts: RmOpts, glob: string, ...rest: string[]) => ShellString) &
((glob: string, ...rest: string[]) => ShellString),
sed: ((
opts: SedOpts,
rx: ShellPattern,
subst: string,
glob: string,
...rest: string[]
) => ShellString) &
((
rx: ShellPattern,
subst: string,
glob: string,
...rest: string[]
) => ShellString),
set: ((exitOnError: '-e' | '+e', rest: void) => void) &
((verbose: '-v' | '+v', rest: void) => void) &
((disableGlobbing: '-f' | '+f', rest: void) => void),
sort: ((opts: SortOpts, glob: string, ...rest: string[]) => ShellString) &
((glob: string, ...rest: string[]) => ShellString),
tail: ((num: number, glob: string, ...rest: string[]) => ShellString) &
((glob: string, ...rest: string[]) => ShellString),
tempdir: (rest: void) => string,
test: (mode: TestOpts, path: string, rest: void) => boolean,
touch: ((opts: TouchOpts, glob: string, ...rest: string[]) => ShellString) &
((glob: string, ...rest: string[]) => ShellString),
which: (cmd: string, rest: void) => ShellString,
...
};
}