Skip to content

Commit e2312c0

Browse files
committed
bump civet, prettier, jest, babel, mdtocs, sucrase, yaml
1 parent 813363d commit e2312c0

35 files changed

Lines changed: 2813 additions & 2178 deletions

meta/generated-docs/ChildProcess.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ trace?: (...args: Array<any>) => void;
301301
declare interface ChildProcessConstructor {
302302
new (
303303
args: string | Path | Array<string | number | Path>,
304-
options?: ChildProcessOptions
304+
options?: ChildProcessOptions,
305305
): ChildProcess;
306306
readonly prototype: ChildProcess;
307307
}

meta/generated-docs/assert.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
const assert: {
99
<ValueType>(
1010
value: ValueType,
11-
message?: string
11+
message?: string,
1212
): asserts value is ValueType extends null | undefined | false | 0 | ""
1313
? never
1414
: ValueType;
1515
type: <T extends TypeValidator<any> | CoerceableToTypeValidator>(
1616
value: any,
1717
type: T,
18-
optionalMessage?: string
18+
optionalMessage?: string,
1919
) => asserts value is UnwrapTypeFromCoerceableOrValidator<T>;
2020
};
2121
```

meta/generated-docs/bytecode.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ declare module "quickjs:bytecode" {
1313
byteSwap?: boolean;
1414
sourceType?: "module" | "script";
1515
encodedFileName?: string;
16-
}
16+
},
1717
): ArrayBuffer;
1818
export function fromValue(
1919
value: any,
2020
options?: {
2121
byteSwap?: boolean;
22-
}
22+
},
2323
): ArrayBuffer;
2424
export function toValue(bytecode: ArrayBuffer): any;
2525
}
@@ -38,7 +38,7 @@ export function fromFile(
3838
byteSwap?: boolean;
3939
sourceType?: "module" | "script";
4040
encodedFileName?: string;
41-
}
41+
},
4242
): ArrayBuffer;
4343
```
4444

@@ -51,7 +51,7 @@ export function fromValue(
5151
value: any,
5252
options?: {
5353
byteSwap?: boolean;
54-
}
54+
},
5555
): ArrayBuffer;
5656
```
5757

meta/generated-docs/cat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ const cat: {
2323
paths: string | Path | Array<string | Path>,
2424
options: {
2525
binary: false;
26-
}
26+
},
2727
): string;
2828
(
2929
paths: string | Path | Array<string | Path>,
3030
options: {
3131
binary: true;
32-
}
32+
},
3333
): ArrayBuffer;
3434
};
3535
```

meta/generated-docs/chmod.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface Chmod {
2929
permissions: Operation extends "set"
3030
? Record<Chmod.Who, Chmod.Permission>
3131
: Partial<Record<Chmod.Who, Chmod.Permission>>,
32-
path: string | Path
32+
path: string | Path,
3333
): void;
3434
}
3535
```

meta/generated-docs/engine.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ declare module "quickjs:engine" {
2222
options?: {
2323
backtraceBarrier?: boolean;
2424
filename?: string;
25-
}
25+
},
2626
): any;
2727
export function runScript(filename: string): any;
2828
export function importModule(
2929
filename: string,
30-
basename?: string
30+
basename?: string,
3131
): {
3232
[key: string]: any;
3333
};
@@ -38,7 +38,7 @@ declare module "quickjs:engine" {
3838
name: string,
3939
obj: {
4040
[key: string]: any;
41-
}
41+
},
4242
): void;
4343
export const ModuleDelegate: ModuleDelegate;
4444
export function gc(): void;
@@ -86,7 +86,7 @@ export function evalScript(
8686
options?: {
8787
backtraceBarrier?: boolean;
8888
filename?: string;
89-
}
89+
},
9090
): any;
9191
```
9292

@@ -112,7 +112,7 @@ Evaluate the file `filename` as a module. Effectively a synchronous dynamic `imp
112112
```ts
113113
export function importModule(
114114
filename: string,
115-
basename?: string
115+
basename?: string,
116116
): {
117117
[key: string]: any;
118118
};
@@ -160,7 +160,7 @@ export function defineBuiltinModule(
160160
name: string,
161161
obj: {
162162
[key: string]: any;
163-
}
163+
},
164164
): void;
165165
```
166166

meta/generated-docs/env.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ declare function readEnvBool<T>(
3939
fallback: T,
4040
logging?: {
4141
warn?: (...args: Array<any>) => void;
42-
}
42+
},
4343
): boolean | T;
4444
```

meta/generated-docs/exec.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ declare interface Exec {
211211
failOnNonZeroStatus: true;
212212
captureOutput: false;
213213
block: true;
214-
}
214+
},
215215
>(
216216
args: Array<string | Path | number> | string | Path,
217-
options?: ExecOptions
217+
options?: ExecOptions,
218218
): ExecOptions["block"] extends false
219219
? {
220220
wait(): ExecWaitResult<ExecOptions>;

meta/generated-docs/extname.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ returned.
1515
```ts
1616
declare function extname(
1717
pathOrFilename: string | Path,
18-
options?: ExtnameOptions
18+
options?: ExtnameOptions,
1919
): string;
2020
```
2121

meta/generated-docs/filesystem.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ const readFile: {
5454
path: string | Path,
5555
options: {
5656
binary: false;
57-
}
57+
},
5858
): string;
5959
(
6060
path: string | Path,
6161
options: {
6262
binary: true;
63-
}
63+
},
6464
): ArrayBuffer;
6565
};
6666
```
@@ -110,7 +110,7 @@ Strings are written using the UTF-8 encoding.
110110
```ts
111111
declare function writeFile(
112112
path: string | Path,
113-
data: string | ArrayBuffer
113+
data: string | ArrayBuffer,
114114
): void;
115115
```
116116

@@ -204,7 +204,7 @@ Provides the same functionality as the command `cp -R`.
204204
declare function copy(
205205
from: string | Path,
206206
to: string | Path,
207-
options?: CopyOptions
207+
options?: CopyOptions,
208208
): void;
209209
```
210210

0 commit comments

Comments
 (0)