cypress 13.12.0 → 13.13.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@cypress/angular-signals",
3
+ "version": "0.0.0-development",
4
+ "description": "Test Angular Components using Signals with Cypress",
5
+ "main": "dist/index.js",
6
+ "scripts": {
7
+ "prebuild": "rimraf dist",
8
+ "build": "rollup -c rollup.config.mjs",
9
+ "postbuild": "node ../../scripts/sync-exported-npm-with-cli.js",
10
+ "check-ts": "tsc --noEmit",
11
+ "dev": "rollup -c rollup.config.mjs -w",
12
+ "lint": "eslint --ext .js,.ts,.json, ."
13
+ },
14
+ "dependencies": {},
15
+ "devDependencies": {
16
+ "@angular/common": "^17.2.0",
17
+ "@angular/core": "^17.2.0",
18
+ "@angular/platform-browser-dynamic": "^17.2.0",
19
+ "@cypress/mount-utils": "0.0.0-development",
20
+ "typescript": "~5.4.5",
21
+ "zone.js": "~0.14.6"
22
+ },
23
+ "peerDependencies": {
24
+ "@angular/common": ">=17.2",
25
+ "@angular/core": ">=17.2",
26
+ "@angular/platform-browser-dynamic": ">=17.2",
27
+ "rxjs": ">=7.5.0",
28
+ "zone.js": ">=0.13.0"
29
+ },
30
+ "files": [
31
+ "dist"
32
+ ],
33
+ "types": "dist/index.d.ts",
34
+ "license": "MIT",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/cypress-io/cypress.git"
38
+ },
39
+ "homepage": "https://github.com/cypress-io/cypress/blob/develop/npm/angular-signals/#readme",
40
+ "bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fangular&template=1-bug-report.md&title=",
41
+ "keywords": [
42
+ "angular",
43
+ "cypress",
44
+ "cypress-io",
45
+ "test",
46
+ "testing"
47
+ ],
48
+ "contributors": [
49
+ {
50
+ "name": "Bill Glesias",
51
+ "social": "@atofstryker"
52
+ }
53
+ ],
54
+ "module": "dist/index.js",
55
+ "publishConfig": {
56
+ "access": "public"
57
+ },
58
+ "nx": {
59
+ "targets": {
60
+ "build": {
61
+ "outputs": [
62
+ "{workspaceRoot}/cli/angular-signals"
63
+ ]
64
+ }
65
+ }
66
+ },
67
+ "standard": {
68
+ "globals": [
69
+ "Cypress",
70
+ "cy",
71
+ "expect"
72
+ ]
73
+ }
74
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "13.12.0",
3
+ "version": "13.13.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",
@@ -46,7 +46,7 @@
46
46
  "request-progress": "^3.0.0",
47
47
  "semver": "^7.5.3",
48
48
  "supports-color": "^8.1.1",
49
- "tmp": "~0.2.1",
49
+ "tmp": "~0.2.3",
50
50
  "untildify": "^4.0.0",
51
51
  "yauzl": "^2.10.0"
52
52
  },
@@ -62,7 +62,8 @@
62
62
  "vue2",
63
63
  "react18",
64
64
  "angular",
65
- "svelte"
65
+ "svelte",
66
+ "angular-signals"
66
67
  ],
67
68
  "bin": {
68
69
  "cypress": "bin/cypress"
@@ -114,6 +115,11 @@
114
115
  "types": "./svelte/dist/index.d.ts",
115
116
  "import": "./svelte/dist/cypress-svelte.esm-bundler.js",
116
117
  "require": "./svelte/dist/cypress-svelte.cjs.js"
118
+ },
119
+ "./angular-signals": {
120
+ "types": "./angular-signals/dist/index.d.ts",
121
+ "import": "./angular-signals/dist/index.js",
122
+ "require": "./angular-signals/dist/index.js"
117
123
  }
118
124
  },
119
125
  "nx": {
@@ -134,8 +140,8 @@
134
140
  },
135
141
  "buildInfo": {
136
142
  "commitBranch": "develop",
137
- "commitSha": "54a636ea45c81db392ae612bac960b8be4881253",
138
- "commitDate": "2024-06-18T16:49:18.000Z",
143
+ "commitSha": "5c9dc77708391655141b6ab1321e82c397f1234e",
144
+ "commitDate": "2024-07-16T16:20:29.000Z",
139
145
  "stable": true
140
146
  },
141
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
  }