@nx/workspace 19.0.4 → 19.0.6

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.0.4",
3
+ "version": "19.0.6",
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": {
@@ -19,7 +19,7 @@
19
19
  "Cypress",
20
20
  "CLI"
21
21
  ],
22
- "main": "./index.js",
22
+ "main": "./index",
23
23
  "typings": "./index.d.ts",
24
24
  "author": "Victor Savkin",
25
25
  "license": "MIT",
@@ -61,13 +61,13 @@
61
61
  }
62
62
  },
63
63
  "dependencies": {
64
- "@nx/devkit": "19.0.4",
64
+ "@nx/devkit": "19.0.6",
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.0.4",
70
- "@nrwl/workspace": "19.0.4"
69
+ "nx": "19.0.6",
70
+ "@nrwl/workspace": "19.0.6"
71
71
  },
72
72
  "publishConfig": {
73
73
  "access": "public"
@@ -27,11 +27,7 @@ jobs:
27
27
  - bash: az devops configure --defaults organization=$(System.TeamFoundationCollectionUri) project=$(System.TeamProject)
28
28
  displayName: 'Set default Azure DevOps organization and project'
29
29
  # Get last successfull commit from Azure Devops CLI
30
- - displayName: 'Get last successful commit SHA'
31
- condition: ne(variables['Build.Reason'], 'PullRequest')
32
- env:
33
- AZURE_DEVOPS_EXT_PAT: $(System.AccessToken)
34
- bash: |
30
+ - bash: |
35
31
  LAST_SHA=$(az pipelines build list --branch $(Build.SourceBranchName) --definition-ids $(System.DefinitionId) --result succeeded --top 1 --query "[0].triggerInfo.\"ci.sourceSha\"")
36
32
  if [ -z "$LAST_SHA" ]
37
33
  then
@@ -40,6 +36,10 @@ jobs:
40
36
  echo "Last successful commit SHA: $LAST_SHA"
41
37
  echo "##vso[task.setvariable variable=BASE_SHA]$LAST_SHA"
42
38
  fi
39
+ displayName: 'Get last successful commit SHA'
40
+ condition: ne(variables['Build.Reason'], 'PullRequest')
41
+ env:
42
+ AZURE_DEVOPS_EXT_PAT: $(System.AccessToken)
43
43
 
44
44
  <% if(packageManager == 'pnpm'){ %>
45
45
  - script: npm install --prefix=$HOME/.local -g pnpm@8