@nx/workspace 23.0.0-beta.23 → 23.0.0-beta.25

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.
@@ -5,7 +5,7 @@ async function runAngularPlugin(tree, schema) {
5
5
  let move;
6
6
  try {
7
7
  // nx-ignore-next-line
8
- move = require('@nx/angular/src/generators/move/move-impl').move;
8
+ move = require('@nx/angular/internal').move;
9
9
  }
10
10
  catch { }
11
11
  if (!move) {
@@ -297,7 +297,6 @@ async function createPreset(tree, options) {
297
297
  name: options.workspaces ? undefined : options.name,
298
298
  directory: '.',
299
299
  linter: options.linter,
300
- standaloneConfig: options.standaloneConfig,
301
300
  framework: options.framework,
302
301
  docker: options.docker,
303
302
  rootProject: true,
@@ -8,7 +8,6 @@ export interface Schema {
8
8
  linter?: string;
9
9
  formatter?: string;
10
10
  workspaces?: boolean;
11
- standaloneConfig?: boolean;
12
11
  framework?: string;
13
12
  packageManager?: string;
14
13
  bundler?: string;
@@ -54,12 +54,6 @@
54
54
  "type": "boolean",
55
55
  "default": false
56
56
  },
57
- "standaloneConfig": {
58
- "description": "Split the project configurations into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",
59
- "type": "boolean",
60
- "default": true,
61
- "x-deprecated": "Nx only supports standaloneConfig"
62
- },
63
57
  "packageManager": {
64
58
  "description": "The package manager used to install dependencies.",
65
59
  "type": "string"
package/migrations.json CHANGED
@@ -7,32 +7,6 @@
7
7
  }
8
8
  },
9
9
  "packageJsonUpdates": {
10
- "20.2.0": {
11
- "version": "20.2.0-beta.5",
12
- "x-prompt": "Do you want to update to TypeScript v5.6?",
13
- "requires": {
14
- "typescript": ">=5.5.0 <5.6.0"
15
- },
16
- "packages": {
17
- "typescript": {
18
- "version": "~5.6.2",
19
- "alwaysAddToPackageJson": false
20
- }
21
- }
22
- },
23
- "20.4.0": {
24
- "version": "20.4.0-beta.1",
25
- "x-prompt": "Do you want to update to TypeScript v5.7?",
26
- "requires": {
27
- "typescript": ">=5.6.0 <5.7.0"
28
- },
29
- "packages": {
30
- "typescript": {
31
- "version": "~5.7.2",
32
- "alwaysAddToPackageJson": false
33
- }
34
- }
35
- },
36
10
  "21.2.0": {
37
11
  "version": "21.2.0-beta.0",
38
12
  "x-prompt": "Do you want to update to TypeScript v5.8?",
package/package.json CHANGED
@@ -1,12 +1,11 @@
1
1
  {
2
2
  "name": "@nx/workspace",
3
- "version": "23.0.0-beta.23",
3
+ "version": "23.0.0-beta.25",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "files": [
7
7
  "dist",
8
8
  "!dist/tsconfig.tsbuildinfo",
9
- "!dist/spec",
10
9
  "migrations.json",
11
10
  "executors.json",
12
11
  "generators.json"
@@ -51,7 +50,8 @@
51
50
  "packageGroup": {
52
51
  "nx-cloud": "latest",
53
52
  "nx": "*"
54
- }
53
+ },
54
+ "supportsOptionalUpdates": true
55
55
  },
56
56
  "exports": {
57
57
  ".": {
@@ -85,11 +85,11 @@
85
85
  "semver": "^7.6.3",
86
86
  "tslib": "^2.3.0",
87
87
  "yargs-parser": "21.1.1",
88
- "nx": "23.0.0-beta.23",
89
- "@nx/devkit": "23.0.0-beta.23"
88
+ "nx": "23.0.0-beta.25",
89
+ "@nx/devkit": "23.0.0-beta.25"
90
90
  },
91
91
  "devDependencies": {
92
- "nx": "23.0.0-beta.23"
92
+ "nx": "23.0.0-beta.25"
93
93
  },
94
94
  "publishConfig": {
95
95
  "access": "public"