From 6d47c2b9f4af72de45f766c65bcaf9edab6dba85 Mon Sep 17 00:00:00 2001 From: Supan Adit Pratama Date: Tue, 6 May 2025 20:20:29 +0700 Subject: [PATCH] chore: fix release bat in windows stuck in build, also publishing the minor version to show known issue notes at npmjs --- package.json | 2 +- scripts/windows/release.bat | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 6e98c72..f914c83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@aditama-labs/nest-autocrud", - "version": "0.6.1", + "version": "0.6.2", "description": "NestJS Auto CRUD Library", "author": "Supan Adit Pratama", "license": "MIT", diff --git a/scripts/windows/release.bat b/scripts/windows/release.bat index f3c1f12..4b6ef02 100644 --- a/scripts/windows/release.bat +++ b/scripts/windows/release.bat @@ -1,7 +1,7 @@ @echo off echo Running npm run build:libs -npm run build:libs +call npm run build:libs echo Copying package.json to plugins copy package.json .\plugins @@ -13,7 +13,7 @@ echo Changing working directory to plugins cd plugins echo Publishing... -npm publish +call npm publish echo Cleaning up... cd ..