Skip to content

Commit 7eeee67

Browse files
authored
Merge pull request #449 from qwikifiers/pr-upgrade-nx-version
2 parents d4a9538 + 612a0ed commit 7eeee67

File tree

4 files changed

+665
-1105
lines changed

4 files changed

+665
-1105
lines changed

migrations.json

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,35 @@
11
{
22
"migrations": [
33
{
4-
"version": "16.4.1-beta.0",
5-
"description": "Changes the testFile config in the vite:test exectutor from a string to an array of strings",
64
"cli": "nx",
7-
"implementation": "./src/migrations/update-16-4-1-update-test-file-config/update-16-4-1-test-file-config",
8-
"package": "@nx/vite",
9-
"name": "update-16-4-1-test-file-config"
5+
"version": "16.8.0-beta.3",
6+
"description": "Escape $ in env variables",
7+
"implementation": "./src/migrations/update-16-8-0/escape-dollar-sign-env-variables",
8+
"package": "nx",
9+
"name": "16.8.0-escape-dollar-sign-env"
1010
},
1111
{
1212
"cli": "nx",
13-
"version": "16.5.0-beta.0",
14-
"description": "Move .storybook/tsconfig.json to tsconfig.storybook.json for non-Angular projects.",
15-
"factory": "./src/migrations/update-16-5-0/move-storybook-tsconfig",
16-
"package": "@nx/storybook",
17-
"name": "update-16-5-0"
13+
"version": "16.8.2-beta.0",
14+
"description": "Remove invalid options (strict, noInterop) for ES6 type modules.",
15+
"factory": "./src/migrations/update-16-8-2/update-swcrc",
16+
"package": "@nx/js",
17+
"name": "16-8-2-update-swcrc"
18+
},
19+
{
20+
"version": "16.8.0",
21+
"description": "update-16-8-0-add-ignored-files",
22+
"implementation": "./src/migrations/update-16-8-0-add-ignored-files/update-16-8-0-add-ignored-files",
23+
"package": "@nx/linter",
24+
"name": "update-16-8-0-add-ignored-files"
25+
},
26+
{
27+
"cli": "nx",
28+
"version": "16.8.0-beta.4",
29+
"description": "Update to Cypress v13. Most noteable change is video recording is off by default. This migration will only update if the workspace is already on Cypress v12. https://docs.cypress.io/guides/references/migration-guide#Migrating-to-Cypress-130",
30+
"implementation": "./src/migrations/update-16-8-0/cypress-13",
31+
"package": "@nx/cypress",
32+
"name": "update-16-8-0-cypress-13"
1833
}
1934
]
2035
}

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@
3434
"@frsource/cypress-plugin-visual-regression-diff": "^3.3.10",
3535
"@jscutlery/semver": "^3.1.0",
3636
"@k11r/nx-cloudflare-wrangler": "2.4.2",
37-
"@nx/cypress": "^16.7.4",
38-
"@nx/eslint-plugin": "^16.7.4",
39-
"@nx/js": "16.7.4",
40-
"@nx/linter": "^16.7.4",
41-
"@nx/storybook": "^16.7.4",
42-
"@nx/vite": "^16.7.4",
43-
"@nx/workspace": "^16.7.4",
37+
"@nx/cypress": "16.9.1",
38+
"@nx/eslint-plugin": "16.9.1",
39+
"@nx/js": "16.9.1",
40+
"@nx/linter": "16.9.1",
41+
"@nx/storybook": "16.9.1",
42+
"@nx/vite": "16.9.1",
43+
"@nx/workspace": "16.9.1",
4444
"@storybook/addon-a11y": "^7.4.0",
4545
"@storybook/addon-coverage": "^0.0.9",
4646
"@storybook/addon-essentials": "^7.4.0",
@@ -67,7 +67,7 @@
6767
"commitizen": "^4.3.0",
6868
"commitlint": "^17.7.1",
6969
"country-list-json": "1.1.0",
70-
"cypress": "^12",
70+
"cypress": "^13.0.0",
7171
"cypress-axe": "1.4.0",
7272
"cypress-ct-qwik": "0.3.0",
7373
"cz-conventional-changelog": "^3.3.0",
@@ -84,8 +84,8 @@
8484
"ngx-deploy-npm": "^7.0.1",
8585
"node-fetch": "^3.3.2",
8686
"np": "^8.0.4",
87-
"nx": "^16.7.4",
88-
"nx-cloud": "^16.3.0",
87+
"nx": "16.9.1",
88+
"nx-cloud": "16.4.0",
8989
"postcss": "^8.4.29",
9090
"prettier": "^2.8.8",
9191
"prettier-plugin-tailwindcss": "0.4.1",

packages/kit-headless/src/components/tabs/tabs.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ describe('Tabs', () => {
563563
cy.findByRole('tabpanel').should('contain', 'Panel 2');
564564
});
565565

566-
it.only(`GIVEN 3 tabs written with the short version and the middle TabPanel has a disabled prop
566+
it(`GIVEN 3 tabs written with the short version and the middle TabPanel has a disabled prop
567567
WHEN focusing on first component and hitting the right key
568568
THEN the selected tab should be the third one`, () => {
569569
cy.mount(

0 commit comments

Comments
 (0)