cypress 13.12.0 → 13.13.0
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/angular/angular/dist/index.d.ts +0 -1
- package/angular/dist/index.d.ts +0 -1
- package/angular-signals/README.md +11 -0
- package/angular-signals/angular-signals/README.md +11 -0
- package/angular-signals/angular-signals/dist/index.d.ts +136 -0
- package/angular-signals/angular-signals/dist/index.js +1861 -0
- package/angular-signals/angular-signals/package.json +74 -0
- package/angular-signals/dist/index.d.ts +136 -0
- package/angular-signals/dist/index.js +1861 -0
- package/angular-signals/package.json +74 -0
- package/package.json +11 -5
| @@ -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. | 
| 3 | 
            +
              "version": "13.13.0",
         | 
| 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. | 
| 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": " | 
| 138 | 
            -
                "commitDate": "2024- | 
| 143 | 
            +
                "commitSha": "a16edd56903e32da598d07c0c8d0e835d060396a",
         | 
| 144 | 
            +
                "commitDate": "2024-07-01T16:39:03.000Z",
         | 
| 139 145 | 
             
                "stable": true
         | 
| 140 146 | 
             
              },
         | 
| 141 147 | 
             
              "description": "Cypress is a next generation front end testing tool built for the modern web",
         |