@types/picomatch 4.0.1 → 4.0.3

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.
picomatch/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for picomatch (https://github.com/microma
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/picomatch.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Sat, 19 Jul 2025 01:30:15 GMT
11
+ * Last updated: Fri, 03 Apr 2026 00:13:39 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
@@ -68,10 +68,6 @@ declare namespace picomatch {
68
68
  * Allows glob to match any part of the given string(s).
69
69
  */
70
70
  contains?: boolean | undefined;
71
- /**
72
- * Current working directory. Used by `picomatch.split()`
73
- */
74
- cwd?: string | undefined;
75
71
  /**
76
72
  * Debug regular expressions when an error is thrown.
77
73
  */
@@ -87,10 +83,6 @@ declare namespace picomatch {
87
83
  */
88
84
  expandRange?(from: string, to: string, options: PicomatchOptions): string;
89
85
  expandRange?(from: string, to: string, step: string, options: PicomatchOptions): string;
90
- /**
91
- * Throws an error if no matches are found. Based on the bash option of the same name.
92
- */
93
- failglob?: boolean | undefined;
94
86
  /**
95
87
  * To speed up processing, full parsing is skipped for a handful common glob patterns. Disable this behavior by setting this option to `false`.
96
88
  */
@@ -115,10 +107,6 @@ declare namespace picomatch {
115
107
  * When `true`, brackets in the glob pattern will be escaped so that only literal brackets will be matched.
116
108
  */
117
109
  literalBrackets?: boolean | undefined;
118
- /**
119
- * Support regex positive and negative lookbehinds. Note that you must be using Node 8.1.10 or higher to enable regex lookbehinds.
120
- */
121
- lookbehinds?: boolean | undefined;
122
110
  /**
123
111
  * Alias for `basename`
124
112
  */
@@ -132,19 +120,13 @@ declare namespace picomatch {
132
120
  */
133
121
  nobrace?: boolean | undefined;
134
122
  /**
135
- * Disable brace matching, so that `{a,b}` and `{1..3}` would be treated as literal characters.
123
+ * Disable matching with regex brackets.
136
124
  */
137
125
  nobracket?: boolean | undefined;
138
126
  /**
139
127
  * Make matching case-insensitive. Equivalent to the regex `i` flag. Note that this option is overridden by the `flags` option.
140
128
  */
141
129
  nocase?: boolean | undefined;
142
- /**
143
- * @deprecated use `nounique` instead.
144
- * This option will be removed in a future major release. By default duplicates are removed.
145
- * Disable uniquification by setting this option to false.
146
- */
147
- nodupes?: boolean | undefined;
148
130
  /**
149
131
  * Alias for `noextglob`
150
132
  */
@@ -161,10 +143,6 @@ declare namespace picomatch {
161
143
  * Disable support for negating with leading `!`
162
144
  */
163
145
  nonegate?: boolean | undefined;
164
- /**
165
- * Disable support for regex quantifiers (like `a{1,2}`) and treat them as brace patterns to be expanded.
166
- */
167
- noquantifiers?: boolean | undefined;
168
146
  /**
169
147
  * Function to be called on ignored items.
170
148
  */
@@ -181,10 +159,6 @@ declare namespace picomatch {
181
159
  * Support POSIX character classes ("posix brackets").
182
160
  */
183
161
  posix?: boolean | undefined;
184
- /**
185
- * Convert all slashes in file paths to forward slashes. This does not convert slashes in the glob pattern itself
186
- */
187
- posixSlashes?: boolean | undefined;
188
162
  /**
189
163
  * String to prepend to the generated regex used for matching.
190
164
  */
picomatch/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/picomatch",
3
- "version": "4.0.1",
3
+ "version": "4.0.3",
4
4
  "description": "TypeScript definitions for picomatch",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/picomatch",
6
6
  "license": "MIT",
@@ -31,6 +31,6 @@
31
31
  "scripts": {},
32
32
  "dependencies": {},
33
33
  "peerDependencies": {},
34
- "typesPublisherContentHash": "2afff6e802a010089eebce80a4f93a639a1d5b9225a4eb32c299c4f223d99230",
35
- "typeScriptVersion": "5.1"
34
+ "typesPublisherContentHash": "58567fcb794e877a996a73273469fa040f9043272b0e9adfbdb7517babf9532e",
35
+ "typeScriptVersion": "5.3"
36
36
  }