Skip to content

Commit

Permalink
chore(repo): update nx to 18.1.0-beta.3 (#22135)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz committed Mar 6, 2024
1 parent 3260f41 commit 4484a91
Show file tree
Hide file tree
Showing 6 changed files with 248 additions and 258 deletions.
6 changes: 2 additions & 4 deletions nx.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"$schema": "packages/nx/schemas/nx-schema.json",
"affected": {
"defaultBase": "master"
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
Expand Down Expand Up @@ -215,5 +212,6 @@
"nxCloudUrl": "https://staging.nx.app",
"parallel": 1,
"cacheDirectory": "/tmp/nx-cache",
"bust": 5
"bust": 5,
"defaultBase": "master"
}
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,21 +65,21 @@
"@ngrx/store": "17.0.1",
"@nuxt/kit": "^3.10.0",
"@nuxt/schema": "^3.10.0",
"@nx/angular": "18.1.0-beta.1",
"@nx/cypress": "18.1.0-beta.1",
"@nx/devkit": "18.1.0-beta.1",
"@nx/esbuild": "18.1.0-beta.1",
"@nx/eslint": "18.1.0-beta.1",
"@nx/eslint-plugin": "18.1.0-beta.1",
"@nx/jest": "18.1.0-beta.1",
"@nx/js": "18.1.0-beta.1",
"@nx/next": "18.1.0-beta.1",
"@nx/playwright": "18.1.0-beta.1",
"@nx/react": "18.1.0-beta.1",
"@nx/storybook": "18.1.0-beta.1",
"@nx/vite": "18.1.0-beta.1",
"@nx/web": "18.1.0-beta.1",
"@nx/webpack": "18.1.0-beta.1",
"@nx/angular": "18.1.0-beta.3",
"@nx/cypress": "18.1.0-beta.3",
"@nx/devkit": "18.1.0-beta.3",
"@nx/esbuild": "18.1.0-beta.3",
"@nx/eslint": "18.1.0-beta.3",
"@nx/eslint-plugin": "18.1.0-beta.3",
"@nx/jest": "18.1.0-beta.3",
"@nx/js": "18.1.0-beta.3",
"@nx/next": "18.1.0-beta.3",
"@nx/playwright": "18.1.0-beta.3",
"@nx/react": "18.1.0-beta.3",
"@nx/storybook": "18.1.0-beta.3",
"@nx/vite": "18.1.0-beta.3",
"@nx/web": "18.1.0-beta.3",
"@nx/webpack": "18.1.0-beta.3",
"@phenomnomnominal/tsquery": "~5.0.1",
"@playwright/test": "^1.36.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
Expand Down Expand Up @@ -155,7 +155,7 @@
"convert-source-map": "^2.0.0",
"copy-webpack-plugin": "^10.2.4",
"css-minimizer-webpack-plugin": "^5.0.0",
"cypress": "^13.0.0",
"cypress": "^13.6.6",
"cytoscape": "^3.18.2",
"cytoscape-dagre": "^2.4.0",
"cytoscape-popper": "^2.0.0",
Expand Down Expand Up @@ -232,7 +232,7 @@
"node-fetch": "^2.6.7",
"npm-package-arg": "11.0.1",
"nuxt": "^3.10.0",
"nx": "18.1.0-beta.1",
"nx": "18.1.0-beta.3",
"octokit": "^2.0.14",
"open": "^8.4.0",
"openai": "~4.3.1",
Expand Down Expand Up @@ -290,7 +290,7 @@
"use-sync-external-store": "^1.2.0",
"verdaccio": "^5.0.4",
"vite": "5.0.8",
"vitest": "^1.3.1",
"vitest": "1.3.1",
"webpack": "5.88.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Tree } from 'nx/src/generators/tree';
import { CreateNodes } from 'nx/src/utils/nx-plugin';
import { createTreeWithEmptyWorkspace } from 'nx/src/generators/testing-utils/create-tree-with-empty-workspace';
import {
addProjectConfiguration,
CreateNodes,
readProjectConfiguration,
} from 'nx/src/generators/utils/project-configuration';
Tree,
} from 'nx/src/devkit-exports';
import { createTreeWithEmptyWorkspace } from 'nx/src/generators/testing-utils/create-tree-with-empty-workspace';

import { replaceProjectConfigurationsWithPlugin } from './replace-project-configuration-with-plugin';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import type {
Tree,
CreateNodes,
ProjectConfiguration,
TargetConfiguration,
} from 'nx/src/config/workspace-json-project-json';
import type { Tree } from 'nx/src/generators/tree';
import type { CreateNodes } from 'nx/src/utils/nx-plugin';
} from 'nx/src/devkit-exports';
import { requireNx } from '../../nx';
const {
readNxJson,
Expand Down
6 changes: 3 additions & 3 deletions packages/devkit/src/utils/update-package-scripts.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import type { NxJsonConfiguration } from 'nx/src/config/nx-json';
import type { Tree } from 'nx/src/generators/tree';
import type {
CreateNodes,
CreateNodesFunction,
CreateNodesResult,
} from 'nx/src/utils/nx-plugin';
NxJsonConfiguration,
Tree,
} from 'nx/src/devkit-exports';
import type { PackageJson } from 'nx/src/utils/package-json';
import { basename, dirname } from 'path';
import * as yargs from 'yargs-parser';
Expand Down
Loading

0 comments on commit 4484a91

Please sign in to comment.