@nx/workspace 19.1.0-canary.20240509-8f705e3 → 19.1.0-canary.20240511-f7dcf43

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.1.0-canary.20240509-8f705e3",
3
+ "version": "19.1.0-canary.20240511-f7dcf43",
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,13 +61,13 @@
61
61
  }
62
62
  },
63
63
  "dependencies": {
64
- "@nx/devkit": "19.1.0-canary.20240509-8f705e3",
64
+ "@nx/devkit": "19.1.0-canary.20240511-f7dcf43",
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.1.0-canary.20240509-8f705e3",
70
- "@nrwl/workspace": "19.1.0-canary.20240509-8f705e3"
69
+ "nx": "19.1.0-canary.20240511-f7dcf43",
70
+ "@nrwl/workspace": "19.1.0-canary.20240511-f7dcf43"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"
@@ -56,4 +56,5 @@ jobs:
56
56
 
57
57
  # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
58
58
  # - script: <%= packageManagerPrefix %> nx-cloud record -- echo Hello World
59
- - script: <%= packageManagerPrefix %> nx affected --base=$(BASE_SHA) --head=$(HEAD_SHA) -t lint test build<% if(hasE2E){ %> e2e-ci<% } %>
59
+ - script: <%= packageManagerPrefix %> nx affected --base=$(BASE_SHA) --head=$(HEAD_SHA) lint test build<% if(hasE2E){ %>
60
+ - script: <%= packageManagerPrefix %> nx affected --base=$(BASE_SHA) --head=$(HEAD_SHA) --parallel 1 e2e-ci<% } %>
@@ -22,7 +22,8 @@ pipelines:
22
22
  - <%= packageManagerInstall %>
23
23
 
24
24
  - <%= packageManagerPrefix %> nx-cloud record -- nx format:check
25
- - <%= packageManagerPrefix %> nx affected -t lint test build<% if(hasE2E){ %> e2e-ci<% } %> --base=origin/<%= mainBranch %>
25
+ - <%= packageManagerPrefix %> nx affected --base=origin/<%= mainBranch %> -t lint test build<% if(hasE2E){ %>
26
+ - <%= packageManagerPrefix %> nx affected --base=origin/<%= mainBranch %> --parallel 1 -t e2e-ci<% } %>
26
27
 
27
28
  branches:
28
29
  main:
@@ -25,7 +25,8 @@ jobs:
25
25
 
26
26
  # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
27
27
  # - run: <%= packageManagerPrefix %> nx-cloud record -- echo Hello World
28
- - run: <%= packageManagerPrefix %> nx affected --base=$NX_BASE --head=$NX_HEAD -t lint test build<% if(hasE2E){ %> e2e-ci<% } %>
28
+ - run: <%= packageManagerPrefix %> nx affected --base=$NX_BASE --head=$NX_HEAD -t lint test build<% if(hasE2E){ %>
29
+ - run: <%= packageManagerPrefix %> nx affected --base=$NX_BASE --head=$NX_HEAD --parallel 1 -t e2e-ci<% } %>
29
30
 
30
31
  workflows:
31
32
  version: 2
@@ -37,4 +37,5 @@ jobs:
37
37
 
38
38
  # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
39
39
  # - run: <%= packageManagerPrefix %> nx-cloud record -- echo Hello World
40
- - run: <%= packageManagerPrefix %> nx affected -t lint test build<% if(hasE2E){ %> e2e-ci<% } %>
40
+ - run: <%= packageManagerPrefix %> nx affected -t lint test build<% if(hasE2E){ %>
41
+ - run: <%= packageManagerPrefix %> nx affected --parallel 1 -t e2e-ci<% } %>
@@ -22,4 +22,5 @@ variables:
22
22
 
23
23
  # Prepend any command with "nx-cloud record --" to record its logs to Nx Cloud
24
24
  # - <%= packageManagerPrefix %> nx-cloud record -- echo Hello World
25
- - <%= packageManagerPrefix %> nx affected --base=$NX_BASE --head=$NX_HEAD -t lint test build<% if(hasE2E){ %> e2e-ci<% } %>
25
+ - <%= packageManagerPrefix %> nx affected --base=$NX_BASE --head=$NX_HEAD -t lint test build<% if(hasE2E){ %>
26
+ - <%= packageManagerPrefix %> nx affected --base=$NX_BASE --head=$NX_HEAD --parallel 1 -t e2e-ci<% } %>
@@ -1,4 +1,4 @@
1
1
  import { Tree } from '@nx/devkit';
2
2
  import { NormalizedSchema } from './new';
3
- export declare function addPresetDependencies(host: Tree, options: NormalizedSchema): import("@nx/devkit").GeneratorCallback;
3
+ export declare function addPresetDependencies(host: Tree, options: NormalizedSchema): import("nx/src/devkit-exports").GeneratorCallback;
4
4
  export declare function generatePreset(host: Tree, opts: NormalizedSchema): Promise<void>;