From 73600055fc7be1c91df9c358266d4479935c4615 Mon Sep 17 00:00:00 2001 From: Blake Matthes Date: Tue, 15 Jul 2025 10:39:20 -0500 Subject: [PATCH] fix(release script): correction to the script so it now puts the package to correct location --- scripts/release.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.ps1 b/scripts/release.ps1 index ebdc51d..355f878 100644 --- a/scripts/release.ps1 +++ b/scripts/release.ps1 @@ -77,7 +77,7 @@ $filesToCopy = @( @{ Source = "frontend\.tanstack"; Destination = "frontend\.tanstack" }, @{ Source = "frontend\.output"; Destination = "frontend\.output" }, @{ Source = "frontend\public"; Destination = "frontend\public" }, - @{ Source = "package.json"; Destination = "frontend\package.json" }, + @{ Source = "package.json"; Destination = "package.json" }, @{ Source = "CHANGELOG.md"; Destination = "CHANGELOG.md" }, @{ Source = "README.md"; Destination = "README.md" } )