diff --git a/README.md b/README.md index 15b3351..c8b1ed7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/800447205/23.1.3%2B) [![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/T1233410) [![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183) [![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives) diff --git a/test-example.ps1 b/test-example.ps1 index e5b2f03..95a2ff0 100644 --- a/test-example.ps1 +++ b/test-example.ps1 @@ -31,16 +31,12 @@ function Process-JavaScriptProjects { Set-Location $($folder.Name) - # Prepare the list of packages with their versions $packages = $folder.Packages | ForEach-Object { "$_@$global:buildVersion" } - # Join the package list into a single string $packageList = $packages -join " " - # Construct the npm install command $command = "npm install $packageList --force --save --no-fund" - # Output and execute the command Write-Output "Running: $command" Invoke-Expression $command @@ -52,11 +48,6 @@ function Process-JavaScriptProjects { } Write-Host "`nUpdating packages..." - #foreach ($package in $($folder.Packages)) { - # $command = "npm install $package@$global:buildVersion --save" - # Write-Output "Running: $command" - # Invoke-Expression $command - #} Write-Host "Running 'npm run build' in $($folder.Name)" $buildResult = & npm run build