@types/picomatch 4.0.2 → 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: Mon, 28 Jul 2025 21:34:49 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
  */
@@ -135,12 +127,6 @@ declare namespace picomatch {
135
127
  * Make matching case-insensitive. Equivalent to the regex `i` flag. Note that this option is overridden by the `flags` option.
136
128
  */
137
129
  nocase?: boolean | undefined;
138
- /**
139
- * @deprecated use `nounique` instead.
140
- * This option will be removed in a future major release. By default duplicates are removed.
141
- * Disable uniquification by setting this option to false.
142
- */
143
- nodupes?: boolean | undefined;
144
130
  /**
145
131
  * Alias for `noextglob`
146
132
  */
@@ -157,10 +143,6 @@ declare namespace picomatch {
157
143
  * Disable support for negating with leading `!`
158
144
  */
159
145
  nonegate?: boolean | undefined;
160
- /**
161
- * Disable support for regex quantifiers (like `a{1,2}`) and treat them as brace patterns to be expanded.
162
- */
163
- noquantifiers?: boolean | undefined;
164
146
  /**
165
147
  * Function to be called on ignored items.
166
148
  */
@@ -177,10 +159,6 @@ declare namespace picomatch {
177
159
  * Support POSIX character classes ("posix brackets").
178
160
  */
179
161
  posix?: boolean | undefined;
180
- /**
181
- * Convert all slashes in file paths to forward slashes. This does not convert slashes in the glob pattern itself.
182
- */
183
- posixSlashes?: boolean | undefined;
184
162
  /**
185
163
  * String to prepend to the generated regex used for matching.
186
164
  */
picomatch/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/picomatch",
3
- "version": "4.0.2",
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": "9283f27b467f1609607d1f981c52ffc9b428364db691abc2b7045b0dcabb4688",
35
- "typeScriptVersion": "5.1"
34
+ "typesPublisherContentHash": "58567fcb794e877a996a73273469fa040f9043272b0e9adfbdb7517babf9532e",
35
+ "typeScriptVersion": "5.3"
36
36
  }