@nx/workspace 23.1.0 → 23.2.0-canary.20260717-dc22f7e
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/dist/src/generators/ci-workflow/files/azure/azure-pipelines.yml__tmpl__ +1 -1
- package/dist/src/generators/ci-workflow/files/bitbucket-pipelines/bitbucket-pipelines.yml__tmpl__ +3 -3
- package/dist/src/generators/ci-workflow/files/circleci/.circleci/config.yml__tmpl__ +1 -1
- package/dist/src/generators/ci-workflow/files/github/.github/workflows/__workflowFileName__.yml__tmpl__ +6 -6
- package/dist/src/generators/ci-workflow/files/gitlab/.gitlab-ci.yml__tmpl__ +2 -2
- package/package.json +4 -4
package/dist/src/generators/ci-workflow/files/bitbucket-pipelines/bitbucket-pipelines.yml__tmpl__
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
image: node:
|
|
1
|
+
image: node:24
|
|
2
2
|
|
|
3
3
|
clone:
|
|
4
4
|
depth: full
|
|
@@ -12,7 +12,7 @@ pipelines:
|
|
|
12
12
|
- export NX_BRANCH=$BITBUCKET_PR_ID
|
|
13
13
|
|
|
14
14
|
<% if(packageManager == 'pnpm'){ %>
|
|
15
|
-
- npm install --prefix=$HOME/.local -g pnpm@
|
|
15
|
+
- npm install --prefix=$HOME/.local -g pnpm@11
|
|
16
16
|
|
|
17
17
|
<% } %>
|
|
18
18
|
<% if(packageManager == 'bun'){ %>
|
|
@@ -54,7 +54,7 @@ pipelines:
|
|
|
54
54
|
# - <%= packageManagerPreInstallPrefix %> nx start-ci-run --distribute-on="3 linux-medium-js" --stop-agents-after="<% if(hasE2E){ %>e2e-ci<% } else { %>build<% } %>"
|
|
55
55
|
<% } %>
|
|
56
56
|
<% if(packageManager == 'pnpm'){ %>
|
|
57
|
-
- npm install --prefix=$HOME/.local -g pnpm@
|
|
57
|
+
- npm install --prefix=$HOME/.local -g pnpm@11
|
|
58
58
|
<% } %>
|
|
59
59
|
<% if(packageManager == 'bun'){ %>
|
|
60
60
|
- npm install --prefix=$HOME/.local -g bun
|
|
@@ -14,22 +14,22 @@ jobs:
|
|
|
14
14
|
main:
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
|
-
- uses: actions/checkout@
|
|
17
|
+
- uses: actions/checkout@v7
|
|
18
18
|
with:
|
|
19
19
|
filter: tree:0
|
|
20
20
|
fetch-depth: 0
|
|
21
21
|
|
|
22
22
|
<% if(packageManager === 'bun'){ %>
|
|
23
|
-
- uses: oven-sh/setup-bun@
|
|
23
|
+
- uses: oven-sh/setup-bun@v2
|
|
24
24
|
with:
|
|
25
25
|
bun-version: latest
|
|
26
26
|
<% } else if (packageManager === 'yarn' && packageManagerVersion) { %>
|
|
27
27
|
- run: corepack enable
|
|
28
28
|
<% } else if(packageManager ==='pnpm'){ %>
|
|
29
|
-
- uses: pnpm/action-setup@
|
|
29
|
+
- uses: pnpm/action-setup@v6
|
|
30
30
|
name: Install pnpm
|
|
31
31
|
with:<% if (!packageManagerVersion) { %>
|
|
32
|
-
version:
|
|
32
|
+
version: 11.13.0<% } %>
|
|
33
33
|
run_install: false
|
|
34
34
|
<% } %>
|
|
35
35
|
# This enables task distribution via Nx Cloud
|
|
@@ -40,9 +40,9 @@ jobs:
|
|
|
40
40
|
|
|
41
41
|
<% if(packageManager !== 'bun'){ %>
|
|
42
42
|
# Cache node_modules
|
|
43
|
-
- uses: actions/setup-node@
|
|
43
|
+
- uses: actions/setup-node@v6
|
|
44
44
|
with:
|
|
45
|
-
node-version:
|
|
45
|
+
node-version: 24
|
|
46
46
|
cache: '<%= packageManager %>'
|
|
47
47
|
<% } %>
|
|
48
48
|
- run: <%= packageManagerInstall %><% if(hasCypress){ %>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
image: node:
|
|
1
|
+
image: node:24
|
|
2
2
|
variables:
|
|
3
3
|
CI: 'true'
|
|
4
4
|
GIT_DEPTH: 0
|
|
@@ -11,7 +11,7 @@ variables:
|
|
|
11
11
|
- merge_requests
|
|
12
12
|
script:
|
|
13
13
|
<% if(packageManager == 'pnpm'){ %>
|
|
14
|
-
- npm install --prefix=$HOME/.local -g pnpm@
|
|
14
|
+
- npm install --prefix=$HOME/.local -g pnpm@11
|
|
15
15
|
<% } %>
|
|
16
16
|
<% if(packageManager == 'bun'){ %>
|
|
17
17
|
- npm install --prefix=$HOME/.local -g bun
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/workspace",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.2.0-canary.20260717-dc22f7e",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"files": [
|
|
@@ -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.
|
|
89
|
-
"@nx/devkit": "23.
|
|
88
|
+
"nx": "23.2.0-canary.20260717-dc22f7e",
|
|
89
|
+
"@nx/devkit": "23.2.0-canary.20260717-dc22f7e"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
"nx": "23.
|
|
92
|
+
"nx": "23.2.0-canary.20260717-dc22f7e"
|
|
93
93
|
},
|
|
94
94
|
"publishConfig": {
|
|
95
95
|
"access": "public"
|