@nx/workspace 19.8.0-canary.20240918-eb61254 → 19.8.0-canary.20240919-7f4a877

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": "19.8.0-canary.20240918-eb61254",
3
+ "version": "19.8.0-canary.20240919-7f4a877",
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": {
@@ -61,17 +61,17 @@
61
61
  }
62
62
  },
63
63
  "dependencies": {
64
- "@nx/devkit": "19.8.0-canary.20240918-eb61254",
64
+ "@nx/devkit": "19.8.0-canary.20240919-7f4a877",
65
65
  "chalk": "^4.1.0",
66
66
  "enquirer": "~2.3.6",
67
67
  "tslib": "^2.3.0",
68
68
  "yargs-parser": "21.1.1",
69
- "nx": "19.8.0-canary.20240918-eb61254",
70
- "@nrwl/workspace": "19.8.0-canary.20240918-eb61254"
69
+ "nx": "19.8.0-canary.20240919-7f4a877",
70
+ "@nrwl/workspace": "19.8.0-canary.20240919-7f4a877"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"
74
74
  },
75
75
  "type": "commonjs",
76
76
  "types": "./index.d.ts"
77
- }
77
+ }
@@ -28,7 +28,8 @@ pipelines:
28
28
  <% } %>
29
29
  - <%= packageManagerInstall %>
30
30
 
31
- - <%= packageManagerPrefix %> nx-cloud record -- nx format:check
31
+ # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
32
+ # <%= packageManagerPrefix %> nx-cloud record -- echo Hello World
32
33
  # Nx Affected runs only tasks affected by the changes in this PR/commit. Learn more: https://nx.dev/ci/features/affected
33
34
  - <%= packageManagerPrefix %> nx affected --base=origin/<%= mainBranch %> -t lint test build<% if(hasE2E){ %>
34
35
  - <%= packageManagerPrefix %> nx affected --base=origin/<%= mainBranch %> --parallel 1 -t e2e-ci<% } %>