Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions deps/minimatch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ objects.

## Important Security Consideration!

> [!WARNING]
> [!WARNING]
> This library uses JavaScript regular expressions. Please read
> the following warning carefully, and be thoughtful about what
> you provide to this library in production systems.

_Any_ library in JavaScript that deals with matching string
patterns using regular expressions will be subject to
patterns using regular expressions will be subject to
[ReDoS](https://owasp.org/www-community/attacks/Regular_expression_Denial_of_Service_-_ReDoS)
if the pattern is generated using untrusted input.

Expand All @@ -28,7 +28,7 @@ matching system that uses JavaScript regular expressions.

To be extremely clear:

> [!WARNING]
> [!WARNING]
> **If you create a system where you take user input, and use
> that input as the source of a Regular Expression pattern, in
> this or any extant glob matcher in JavaScript, you will be
Expand Down
4 changes: 2 additions & 2 deletions deps/minimatch/dist/commonjs/ast.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MinimatchOptions, MMRegExp } from './index.js';
import type { MinimatchOptions, MMRegExp } from './index.js';
export type ExtglobType = '!' | '?' | '+' | '*' | '@';
export declare class AST {
#private;
Expand All @@ -9,7 +9,7 @@ export declare class AST {
get hasMagic(): boolean | undefined;
toString(): string;
push(...parts: (string | AST)[]): void;
toJSON(): any[];
toJSON(): unknown[];
isStart(): boolean;
isEnd(): boolean;
copyIn(part: AST | string): void;
Expand Down
2 changes: 1 addition & 1 deletion deps/minimatch/dist/commonjs/ast.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 9 additions & 10 deletions deps/minimatch/dist/commonjs/ast.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deps/minimatch/dist/commonjs/ast.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion deps/minimatch/dist/commonjs/escape.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MinimatchOptions } from './index.js';
import type { MinimatchOptions } from './index.js';
/**
* Escape all magic characters in a glob pattern.
*
Expand Down
2 changes: 1 addition & 1 deletion deps/minimatch/dist/commonjs/escape.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deps/minimatch/dist/commonjs/escape.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion deps/minimatch/dist/commonjs/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export declare class Minimatch {
regexp: false | null | MMRegExp;
constructor(pattern: string, options?: MinimatchOptions);
hasMagic(): boolean;
debug(..._: any[]): void;
debug(..._: unknown[]): void;
make(): void;
preprocess(globParts: string[][]): string[][];
adjascentGlobstarOptimize(globParts: string[][]): string[][];
Expand Down
2 changes: 1 addition & 1 deletion deps/minimatch/dist/commonjs/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading