Skip to content

Commit 2544227

Browse files
chore(repo): update nx to 22.4.0-beta.3 (#34108)
Updating Nx from 22.4.0-beta.1 to 22.4.0-beta.3 --------- Co-authored-by: nx-cloud[bot] <71083854+nx-cloud[bot]@users.noreply.github.com>
1 parent e343bd2 commit 2544227

7 files changed

Lines changed: 429 additions & 459 deletions

File tree

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ slf4j = "1.7.10"
1111
gradle-tooling-api = "8.13"
1212
shadow = "8.1.1"
1313
ktfmt = "0.52.0"
14-
nx-project-graph = "0.1.10"
14+
nx-project-graph = "0.1.11"
1515
gradle-plugin-publish = "1.2.1"
1616
jgit = "6.8.0.202311291450-r"
1717

package.json

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -82,29 +82,29 @@
8282
"@notionhq/client": "^2.2.15",
8383
"@nuxt/kit": "^3.10.0",
8484
"@nuxt/schema": "^3.10.0",
85-
"@nx/angular": "22.4.0-beta.1",
85+
"@nx/angular": "22.4.0-beta.3",
8686
"@nx/conformance": "4.0.0",
87-
"@nx/cypress": "22.4.0-beta.1",
88-
"@nx/devkit": "22.4.0-beta.1",
87+
"@nx/cypress": "22.4.0-beta.3",
88+
"@nx/devkit": "22.4.0-beta.3",
8989
"@nx/enterprise-cloud": "3.0.0",
90-
"@nx/esbuild": "22.4.0-beta.1",
91-
"@nx/eslint": "22.4.0-beta.1",
92-
"@nx/eslint-plugin": "22.4.0-beta.1",
93-
"@nx/gradle": "22.4.0-beta.1",
94-
"@nx/jest": "22.4.0-beta.1",
95-
"@nx/js": "22.4.0-beta.1",
90+
"@nx/esbuild": "22.4.0-beta.3",
91+
"@nx/eslint": "22.4.0-beta.3",
92+
"@nx/eslint-plugin": "22.4.0-beta.3",
93+
"@nx/gradle": "22.4.0-beta.3",
94+
"@nx/jest": "22.4.0-beta.3",
95+
"@nx/js": "22.4.0-beta.3",
9696
"@nx/key": "3.0.0",
97-
"@nx/next": "22.4.0-beta.1",
98-
"@nx/playwright": "22.4.0-beta.1",
97+
"@nx/next": "22.4.0-beta.3",
98+
"@nx/playwright": "22.4.0-beta.3",
9999
"@nx/powerpack-license": "3.0.0",
100-
"@nx/react": "22.4.0-beta.1",
101-
"@nx/rsbuild": "22.4.0-beta.1",
102-
"@nx/rspack": "22.4.0-beta.1",
103-
"@nx/storybook": "22.4.0-beta.1",
104-
"@nx/vite": "22.4.0-beta.1",
105-
"@nx/vitest": "22.4.0-beta.1",
106-
"@nx/web": "22.4.0-beta.1",
107-
"@nx/webpack": "22.4.0-beta.1",
100+
"@nx/react": "22.4.0-beta.3",
101+
"@nx/rsbuild": "22.4.0-beta.3",
102+
"@nx/rspack": "22.4.0-beta.3",
103+
"@nx/storybook": "22.4.0-beta.3",
104+
"@nx/vite": "22.4.0-beta.3",
105+
"@nx/vitest": "22.4.0-beta.3",
106+
"@nx/web": "22.4.0-beta.3",
107+
"@nx/webpack": "22.4.0-beta.3",
108108
"@phenomnomnominal/tsquery": "catalog:typescript",
109109
"@playwright/test": "^1.36.1",
110110
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
@@ -261,7 +261,7 @@
261261
"ng-packagr": "catalog:angular",
262262
"npm-package-arg": "11.0.1",
263263
"nuxt": "^3.10.0",
264-
"nx": "22.4.0-beta.1",
264+
"nx": "22.4.0-beta.3",
265265
"octokit": "^2.0.14",
266266
"open": "^8.4.0",
267267
"openai": "~4.3.1",

packages/react/src/generators/application/application.spec.ts

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -111,23 +111,21 @@ describe('app', () => {
111111
.toMatchInlineSnapshot(`
112112
"import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
113113
import { defineConfig } from 'cypress';
114-
115114
export default defineConfig({
116-
e2e: {
117-
...nxE2EPreset(__filename, {
118-
"cypressDir": "src",
119-
"bundler": "vite",
120-
"webServerCommands": {
121-
"default": "npx nx run my-app:dev",
122-
"production": "npx nx run my-app:preview"
123-
},
124-
"ciWebServerCommand": "npx nx run my-app:preview",
125-
"ciBaseUrl": "http://localhost:4300"
126-
}),
127-
baseUrl: 'http://localhost:4200'
128-
}
129-
});
130-
"
115+
e2e: {
116+
...nxE2EPreset(__filename, {
117+
"cypressDir": "src",
118+
"bundler": "vite",
119+
"webServerCommands": {
120+
"default": "npx nx run my-app:dev",
121+
"production": "npx nx run my-app:preview"
122+
},
123+
"ciWebServerCommand": "npx nx run my-app:preview",
124+
"ciBaseUrl": "http://localhost:4300"
125+
}),
126+
baseUrl: 'http://localhost:4200'
127+
}
128+
});"
131129
`);
132130
});
133131

packages/remix/src/generators/application/__snapshots__/application.impl.spec.ts.snap

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ export default function Index() {
135135
exports[`Remix Application Integrated Repo --e2eTestRunner should generate a cypress e2e application for the app 1`] = `
136136
"import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
137137
import { defineConfig } from 'cypress';
138-
139138
export default defineConfig({
140139
e2e: {
141140
...nxE2EPreset(__filename, {
@@ -388,7 +387,6 @@ export default function Index() {
388387
exports[`Remix Application Standalone Project Repo --e2eTestRunner should generate a cypress e2e application for the app 1`] = `
389388
"import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
390389
import { defineConfig } from 'cypress';
391-
392390
export default defineConfig({
393391
e2e: {
394392
...nxE2EPreset(__filename, {

packages/vue/src/generators/application/__snapshots__/application.spec.ts.snap

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ describe('App', () => {
8484
exports[`application generator should set up project correctly for cypress 5`] = `
8585
"import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
8686
import { defineConfig } from 'cypress';
87-
8887
export default defineConfig({
8988
e2e: {
9089
...nxE2EPreset(__filename, {

packages/web/src/generators/application/application.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,6 @@ describe('app', () => {
182182
.toMatchInlineSnapshot(`
183183
"import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
184184
import { defineConfig } from 'cypress';
185-
186185
export default defineConfig({
187186
e2e: {
188187
...nxE2EPreset(__filename, {
@@ -214,7 +213,6 @@ describe('app', () => {
214213
.toMatchInlineSnapshot(`
215214
"import { nxE2EPreset } from '@nx/cypress/plugins/cypress-preset';
216215
import { defineConfig } from 'cypress';
217-
218216
export default defineConfig({
219217
e2e: {
220218
...nxE2EPreset(__filename, {

0 commit comments

Comments
 (0)