From c1fc8844ff0fb507a02bfef5f7927abe7cbb01c1 Mon Sep 17 00:00:00 2001 From: David Paulson Date: Mon, 24 Nov 2025 13:19:40 -0600 Subject: [PATCH 1/5] Test non global install of cspell --- .build/SpellCheck.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.build/SpellCheck.ps1 b/.build/SpellCheck.ps1 index 879e4fc850..280bb72814 100644 --- a/.build/SpellCheck.ps1 +++ b/.build/SpellCheck.ps1 @@ -20,14 +20,14 @@ function DoSpellCheck { exit 1 } - $cspellModule = npm -g ls cspell | Select-String "cspell@" + $cspellModule = npm ls cspell | Select-String "cspell@" if ([string]::IsNullOrEmpty($cspellModule)) { Write-Host "Installing cspell..." - npm install -g cspell + npm install cspell } - $cspellModule = npm -g ls cspell | Select-String "cspell@" + $cspellModule = npm ls cspell | Select-String "cspell@" if ([string]::IsNullOrEmpty($cspellModule)) { Write-Host "Could not install cspell. Please install cspell and try again." From b484f8fb0fca3c98d7616851fc157a6a54a9d2d3 Mon Sep 17 00:00:00 2001 From: David Paulson Date: Mon, 24 Nov 2025 13:35:07 -0600 Subject: [PATCH 2/5] Revert "Test non global install of cspell" This reverts commit c1fc8844ff0fb507a02bfef5f7927abe7cbb01c1. --- .build/SpellCheck.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.build/SpellCheck.ps1 b/.build/SpellCheck.ps1 index 280bb72814..879e4fc850 100644 --- a/.build/SpellCheck.ps1 +++ b/.build/SpellCheck.ps1 @@ -20,14 +20,14 @@ function DoSpellCheck { exit 1 } - $cspellModule = npm ls cspell | Select-String "cspell@" + $cspellModule = npm -g ls cspell | Select-String "cspell@" if ([string]::IsNullOrEmpty($cspellModule)) { Write-Host "Installing cspell..." - npm install cspell + npm install -g cspell } - $cspellModule = npm ls cspell | Select-String "cspell@" + $cspellModule = npm -g ls cspell | Select-String "cspell@" if ([string]::IsNullOrEmpty($cspellModule)) { Write-Host "Could not install cspell. Please install cspell and try again." From 3763e95cf308ff188c4fc0b98cb9e6643f0e6cdd Mon Sep 17 00:00:00 2001 From: David Paulson Date: Mon, 24 Nov 2025 14:04:09 -0600 Subject: [PATCH 3/5] Test ymal change --- azure-pipeline-merge.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/azure-pipeline-merge.yml b/azure-pipeline-merge.yml index 6bd56cb6f3..11812497ca 100644 --- a/azure-pipeline-merge.yml +++ b/azure-pipeline-merge.yml @@ -18,6 +18,9 @@ extends: stages: - stage: stage jobs: + - task: npmAuthenticate@0 + inputs: + feedUrl: 'https://pkgs.dev.azure.com/CSS-Exchange-Tools/48cb0d5f-15bc-4c97-a88e-9a0b5f5b9933/_packaging/CSS-Exchange-Tools_Feed/npm/registry/' - job: job steps: - pwsh: | From 19d285030ce216b743d470c7ed89865ad2137afd Mon Sep 17 00:00:00 2001 From: David Paulson Date: Mon, 24 Nov 2025 14:37:25 -0600 Subject: [PATCH 4/5] Revert "Test ymal change" This reverts commit 3763e95cf308ff188c4fc0b98cb9e6643f0e6cdd. --- azure-pipeline-merge.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/azure-pipeline-merge.yml b/azure-pipeline-merge.yml index 11812497ca..6bd56cb6f3 100644 --- a/azure-pipeline-merge.yml +++ b/azure-pipeline-merge.yml @@ -18,9 +18,6 @@ extends: stages: - stage: stage jobs: - - task: npmAuthenticate@0 - inputs: - feedUrl: 'https://pkgs.dev.azure.com/CSS-Exchange-Tools/48cb0d5f-15bc-4c97-a88e-9a0b5f5b9933/_packaging/CSS-Exchange-Tools_Feed/npm/registry/' - job: job steps: - pwsh: | From 44d3f381cbb845c4e9b318e2db7c669cb19d2e1f Mon Sep 17 00:00:00 2001 From: David Paulson Date: Mon, 24 Nov 2025 14:41:33 -0600 Subject: [PATCH 5/5] Add npmrc file --- .npmrc | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000000..2f57d34457 --- /dev/null +++ b/.npmrc @@ -0,0 +1,2 @@ +registry=https://pkgs.dev.azure.com/CSS-Exchange-Tools/48cb0d5f-15bc-4c97-a88e-9a0b5f5b9933/_packaging/CSS-Exchange-Tools_Feed/npm/registry/ +always-auth=true