@nx/workspace 22.4.0 → 22.5.0-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/workspace",
3
- "version": "22.4.0",
3
+ "version": "22.5.0-beta.0",
4
4
  "private": false,
5
5
  "description": "The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.",
6
6
  "repository": {
@@ -38,7 +38,7 @@
38
38
  }
39
39
  },
40
40
  "dependencies": {
41
- "@nx/devkit": "22.4.0",
41
+ "@nx/devkit": "22.5.0-beta.0",
42
42
  "@zkochan/js-yaml": "0.0.7",
43
43
  "chalk": "^4.1.0",
44
44
  "enquirer": "~2.3.6",
@@ -46,10 +46,10 @@
46
46
  "semver": "^7.6.3",
47
47
  "tslib": "^2.3.0",
48
48
  "yargs-parser": "21.1.1",
49
- "nx": "22.4.0"
49
+ "nx": "22.5.0-beta.0"
50
50
  },
51
51
  "devDependencies": {
52
- "nx": "22.4.0"
52
+ "nx": "22.5.0-beta.0"
53
53
  },
54
54
  "publishConfig": {
55
55
  "access": "public"
@@ -7,12 +7,12 @@ const path_1 = require("path");
7
7
  const nx_cloud_utils_1 = require("nx/src/utils/nx-cloud-utils");
8
8
  const ts_solution_setup_1 = require("../../utilities/typescript/ts-solution-setup");
9
9
  function getNxCloudRecordCommand(ci, packageManagerPrefix) {
10
- const baseCommand = `${packageManagerPrefix} nx-cloud record -- echo Hello World`;
10
+ const baseCommand = `${packageManagerPrefix} nx record -- echo Hello World`;
11
11
  const prefix = getCiPrefix(ci);
12
12
  const exampleComment = `${prefix}${baseCommand}`;
13
13
  return {
14
14
  comments: [
15
- `Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud`,
15
+ `Prepend any command with "nx record --" to record its logs to Nx Cloud`,
16
16
  exampleComment,
17
17
  ],
18
18
  };
@@ -75,8 +75,8 @@ function getCiArgs(ci, mainBranch, useRunMany = false) {
75
75
  function getBitbucketBranchCommands(packageManagerPrefix, hasTypecheck, hasE2E, useRunMany = false) {
76
76
  const tasks = `lint test build${hasTypecheck ? ' typecheck' : ''}${hasE2E ? ' e2e-ci' : ''}`;
77
77
  const nxCloudComments = [
78
- `Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud`,
79
- `- ${packageManagerPrefix} nx-cloud record -- echo Hello World`,
78
+ `Prepend any command with "nx record --" to record its logs to Nx Cloud`,
79
+ `- ${packageManagerPrefix} nx record -- echo Hello World`,
80
80
  ];
81
81
  // Build nx command comments and command
82
82
  const commandType = useRunMany ? 'run-many' : 'affected';