@nx/workspace 19.1.0-canary.20240516-d581cef → 19.1.0-canary.20240518-3523720
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.
|
|
3
|
+
"version": "19.1.0-canary.20240518-3523720",
|
|
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.
|
|
64
|
+
"@nx/devkit": "19.1.0-canary.20240518-3523720",
|
|
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.
|
|
70
|
-
"@nrwl/workspace": "19.1.0-canary.
|
|
69
|
+
"nx": "19.1.0-canary.20240518-3523720",
|
|
70
|
+
"@nrwl/workspace": "19.1.0-canary.20240518-3523720"
|
|
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
|
-
-
|
|
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
|