cypress 13.13.0 → 13.13.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +3 -3
- package/types/minimatch/index.d.ts +16 -26
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cypress",
|
3
|
-
"version": "13.13.
|
3
|
+
"version": "13.13.1",
|
4
4
|
"main": "index.js",
|
5
5
|
"scripts": {
|
6
6
|
"postinstall": "node index.js --exec install",
|
@@ -140,8 +140,8 @@
|
|
140
140
|
},
|
141
141
|
"buildInfo": {
|
142
142
|
"commitBranch": "develop",
|
143
|
-
"commitSha": "
|
144
|
-
"commitDate": "2024-07-
|
143
|
+
"commitSha": "5c9dc77708391655141b6ab1321e82c397f1234e",
|
144
|
+
"commitDate": "2024-07-16T16:20:29.000Z",
|
145
145
|
"stable": true
|
146
146
|
},
|
147
147
|
"description": "Cypress is a next generation front end testing tool built for the modern web",
|
@@ -35,21 +35,21 @@ declare namespace M {
|
|
35
35
|
*
|
36
36
|
* @default false
|
37
37
|
*/
|
38
|
-
debug?: boolean;
|
38
|
+
debug?: boolean | undefined;
|
39
39
|
|
40
40
|
/**
|
41
41
|
* Do not expand {a,b} and {1..3} brace sets.
|
42
42
|
*
|
43
43
|
* @default false
|
44
44
|
*/
|
45
|
-
nobrace?: boolean;
|
45
|
+
nobrace?: boolean | undefined;
|
46
46
|
|
47
47
|
/**
|
48
48
|
* Disable ** matching against multiple folder names.
|
49
49
|
*
|
50
50
|
* @default false
|
51
51
|
*/
|
52
|
-
noglobstar?: boolean;
|
52
|
+
noglobstar?: boolean | undefined;
|
53
53
|
|
54
54
|
/**
|
55
55
|
* Allow patterns to match filenames starting with a period,
|
@@ -57,21 +57,21 @@ declare namespace M {
|
|
57
57
|
*
|
58
58
|
* @default false
|
59
59
|
*/
|
60
|
-
dot?: boolean;
|
60
|
+
dot?: boolean | undefined;
|
61
61
|
|
62
62
|
/**
|
63
63
|
* Disable "extglob" style patterns like +(a|b).
|
64
64
|
*
|
65
65
|
* @default false
|
66
66
|
*/
|
67
|
-
noext?: boolean;
|
67
|
+
noext?: boolean | undefined;
|
68
68
|
|
69
69
|
/**
|
70
70
|
* Perform a case-insensitive match.
|
71
71
|
*
|
72
72
|
* @default false
|
73
73
|
*/
|
74
|
-
nocase?: boolean;
|
74
|
+
nocase?: boolean | undefined;
|
75
75
|
|
76
76
|
/**
|
77
77
|
* When a match is not found by minimatch.match,
|
@@ -80,7 +80,7 @@ declare namespace M {
|
|
80
80
|
*
|
81
81
|
* @default false
|
82
82
|
*/
|
83
|
-
nonull?: boolean;
|
83
|
+
nonull?: boolean | undefined;
|
84
84
|
|
85
85
|
/**
|
86
86
|
* If set, then patterns without slashes will be matched against
|
@@ -88,7 +88,7 @@ declare namespace M {
|
|
88
88
|
*
|
89
89
|
* @default false
|
90
90
|
*/
|
91
|
-
matchBase?: boolean;
|
91
|
+
matchBase?: boolean | undefined;
|
92
92
|
|
93
93
|
/**
|
94
94
|
* Suppress the behavior of treating #
|
@@ -96,14 +96,14 @@ declare namespace M {
|
|
96
96
|
*
|
97
97
|
* @default false
|
98
98
|
*/
|
99
|
-
nocomment?: boolean;
|
99
|
+
nocomment?: boolean | undefined;
|
100
100
|
|
101
101
|
/**
|
102
102
|
* Suppress the behavior of treating a leading ! character as negation.
|
103
103
|
*
|
104
104
|
* @default false
|
105
105
|
*/
|
106
|
-
nonegate?: boolean;
|
106
|
+
nonegate?: boolean | undefined;
|
107
107
|
|
108
108
|
/**
|
109
109
|
* Returns from negate expressions the same as if they were not negated.
|
@@ -111,7 +111,7 @@ declare namespace M {
|
|
111
111
|
*
|
112
112
|
* @default false
|
113
113
|
*/
|
114
|
-
flipNegate?: boolean;
|
114
|
+
flipNegate?: boolean | undefined;
|
115
115
|
}
|
116
116
|
|
117
117
|
interface IMinimatchStatic {
|
@@ -175,37 +175,27 @@ declare namespace M {
|
|
175
175
|
matchOne(files: string[], pattern: string[], partial: boolean): boolean;
|
176
176
|
|
177
177
|
/**
|
178
|
-
*
|
179
|
-
*
|
180
|
-
* @private
|
178
|
+
* @deprecated. For internal use.
|
181
179
|
*/
|
182
180
|
debug(): void;
|
183
181
|
|
184
182
|
/**
|
185
|
-
*
|
186
|
-
*
|
187
|
-
* @private
|
183
|
+
* @deprecated. For internal use.
|
188
184
|
*/
|
189
185
|
make(): void;
|
190
186
|
|
191
187
|
/**
|
192
|
-
*
|
193
|
-
*
|
194
|
-
* @private
|
188
|
+
* @deprecated. For internal use.
|
195
189
|
*/
|
196
190
|
parseNegate(): void;
|
197
191
|
|
198
192
|
/**
|
199
|
-
*
|
200
|
-
*
|
201
|
-
* @private
|
193
|
+
* @deprecated. For internal use.
|
202
194
|
*/
|
203
195
|
braceExpand(pattern: string, options: IOptions): void;
|
204
196
|
|
205
197
|
/**
|
206
|
-
*
|
207
|
-
*
|
208
|
-
* @private
|
198
|
+
* @deprecated. For internal use.
|
209
199
|
*/
|
210
200
|
parse(pattern: string, isSub?: boolean): void;
|
211
201
|
}
|