@nx/workspace 19.8.0-canary.20240917-5b34ea5 → 19.8.0-canary.20240919-7f4a877
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nx/workspace",
|
3
|
-
"version": "19.8.0-canary.
|
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.
|
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.
|
70
|
-
"@nrwl/workspace": "19.8.0-canary.
|
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
|
+
}
|
package/src/generators/ci-workflow/files/bitbucket-pipelines/bitbucket-pipelines.yml__tmpl__
CHANGED
@@ -28,7 +28,8 @@ pipelines:
|
|
28
28
|
<% } %>
|
29
29
|
- <%= packageManagerInstall %>
|
30
30
|
|
31
|
-
|
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<% } %>
|