cypress 13.13.0 → 13.13.2

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.
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "13.13.0",
3
+ "version": "13.13.2",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
7
7
  "size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
8
8
  },
9
9
  "dependencies": {
10
- "@cypress/request": "^3.0.0",
10
+ "@cypress/request": "^3.0.1",
11
11
  "@cypress/xvfb": "^1.2.4",
12
12
  "@types/sinonjs__fake-timers": "8.1.1",
13
13
  "@types/sizzle": "^2.3.2",
@@ -140,8 +140,8 @@
140
140
  },
141
141
  "buildInfo": {
142
142
  "commitBranch": "develop",
143
- "commitSha": "a16edd56903e32da598d07c0c8d0e835d060396a",
144
- "commitDate": "2024-07-01T16:39:03.000Z",
143
+ "commitSha": "e9026dd907be9aef82114165a0e4f446959387fd",
144
+ "commitDate": "2024-07-30T17:40:50.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
- * Deprecated. For internal use.
179
- *
180
- * @private
178
+ * @deprecated. For internal use.
181
179
  */
182
180
  debug(): void;
183
181
 
184
182
  /**
185
- * Deprecated. For internal use.
186
- *
187
- * @private
183
+ * @deprecated. For internal use.
188
184
  */
189
185
  make(): void;
190
186
 
191
187
  /**
192
- * Deprecated. For internal use.
193
- *
194
- * @private
188
+ * @deprecated. For internal use.
195
189
  */
196
190
  parseNegate(): void;
197
191
 
198
192
  /**
199
- * Deprecated. For internal use.
200
- *
201
- * @private
193
+ * @deprecated. For internal use.
202
194
  */
203
195
  braceExpand(pattern: string, options: IOptions): void;
204
196
 
205
197
  /**
206
- * Deprecated. For internal use.
207
- *
208
- * @private
198
+ * @deprecated. For internal use.
209
199
  */
210
200
  parse(pattern: string, isSub?: boolean): void;
211
201
  }