Skip to content

Commit 1fae5ba

Browse files
deps: update minimatch to 10.1.1
1 parent 60b9aaa commit 1fae5ba

40 files changed

+1393
-1432
lines changed

β€Ždeps/minimatch/LICENSEβ€Ž

Lines changed: 0 additions & 15 deletions
This file was deleted.

β€Ždeps/minimatch/LICENSE.mdβ€Ž

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Blue Oak Model License
2+
3+
Version 1.0.0
4+
5+
## Purpose
6+
7+
This license gives everyone as much permission to work with
8+
this software as possible, while protecting contributors
9+
from liability.
10+
11+
## Acceptance
12+
13+
In order to receive this license, you must agree to its
14+
rules. The rules of this license are both obligations
15+
under that agreement and conditions to your license.
16+
You must not do anything with this software that triggers
17+
a rule that you cannot or will not follow.
18+
19+
## Copyright
20+
21+
Each contributor licenses you to do everything with this
22+
software that would otherwise infringe that contributor's
23+
copyright in it.
24+
25+
## Notices
26+
27+
You must ensure that everyone who gets a copy of
28+
any part of this software from you, with or without
29+
changes, also gets the text of this license or a link to
30+
<https://blueoakcouncil.org/license/1.0.0>.
31+
32+
## Excuse
33+
34+
If anyone notifies you in writing that you have not
35+
complied with [Notices](#notices), you can keep your
36+
license by taking all practical steps to comply within 30
37+
days after the notice. If you do not do so, your license
38+
ends immediately.
39+
40+
## Patent
41+
42+
Each contributor licenses you to do everything with this
43+
software that would otherwise infringe any patent claims
44+
they can license or become able to license.
45+
46+
## Reliability
47+
48+
No contributor can revoke this license.
49+
50+
## No Liability
51+
52+
**_As far as the law allows, this software comes as is,
53+
without any warranty or condition, and no contributor
54+
will be liable to anyone for any damages related to this
55+
software or this license, under any kind of legal claim._**

β€Ždeps/minimatch/README.mdβ€Ž

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ var javascripts = fileList.filter(minimatch.filter('*.js', { matchBase: true }))
163163
### minimatch.escape(pattern, options = {})
164164

165165
Escape all magic characters in a glob pattern, so that it will
166-
only ever match literal strings
166+
only ever match literal strings.
167167

168168
If the `windowsPathsNoEscape` option is used, then characters are
169169
escaped by wrapping in `[]`, because a magic character wrapped in
@@ -238,7 +238,7 @@ Perform a case-insensitive match.
238238

239239
When used with `{nocase: true}`, create regular expressions that
240240
are case-insensitive, but leave string match portions untouched.
241-
Has no effect when used without `{nocase: true}`
241+
Has no effect when used without `{nocase: true}`.
242242

243243
Useful when some other form of case-insensitive matching is used,
244244
or if the original string representation is useful in some other
@@ -354,7 +354,6 @@ is equivalent in all cases).
354354
pattern are preserved.
355355
- `2` (or higher) - Much more aggressive optimizations, suitable
356356
for use with file-walking cases:
357-
358357
- Remove cases where a double-dot `..` follows a pattern
359358
portion that is not `**`, `.`, or empty `''`. Remove empty
360359
and `.` portions of the pattern, where safe to do so (ie,

β€Ždeps/minimatch/dist/commonjs/assert-valid-pattern.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždeps/minimatch/dist/commonjs/ast.d.ts.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždeps/minimatch/dist/commonjs/ast.jsβ€Ž

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždeps/minimatch/dist/commonjs/ast.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždeps/minimatch/dist/commonjs/brace-expressions.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždeps/minimatch/dist/commonjs/escape.d.tsβ€Ž

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ import { MinimatchOptions } from './index.js';
22
/**
33
* Escape all magic characters in a glob pattern.
44
*
5-
* If the {@link windowsPathsNoEscape | GlobOptions.windowsPathsNoEscape}
5+
* If the {@link MinimatchOptions.windowsPathsNoEscape}
66
* option is used, then characters are escaped by wrapping in `[]`, because
77
* a magic character wrapped in a character class can only be satisfied by
88
* that exact character. In this mode, `\` is _not_ escaped, because it is
99
* not interpreted as a magic character, but instead as a path separator.
10+
*
11+
* If the {@link MinimatchOptions.magicalBraces} option is used,
12+
* then braces (`{` and `}`) will be escaped.
1013
*/
11-
export declare const escape: (s: string, { windowsPathsNoEscape, }?: Pick<MinimatchOptions, "windowsPathsNoEscape">) => string;
14+
export declare const escape: (s: string, { windowsPathsNoEscape, magicalBraces, }?: Pick<MinimatchOptions, "windowsPathsNoEscape" | "magicalBraces">) => string;
1215
//# sourceMappingURL=escape.d.ts.map

β€Ždeps/minimatch/dist/commonjs/escape.d.ts.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)