chore: fix release bat in windows stuck in build, also publishing the minor version to show known issue notes at npmjs

This commit is contained in:
Supan Adit Pratama 2025-05-06 20:20:29 +07:00
parent 97be7b8f7c
commit 6d47c2b9f4
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@aditama-labs/nest-autocrud", "name": "@aditama-labs/nest-autocrud",
"version": "0.6.1", "version": "0.6.2",
"description": "NestJS Auto CRUD Library", "description": "NestJS Auto CRUD Library",
"author": "Supan Adit Pratama", "author": "Supan Adit Pratama",
"license": "MIT", "license": "MIT",

View File

@ -1,7 +1,7 @@
@echo off @echo off
echo Running npm run build:libs echo Running npm run build:libs
npm run build:libs call npm run build:libs
echo Copying package.json to plugins echo Copying package.json to plugins
copy package.json .\plugins copy package.json .\plugins
@ -13,7 +13,7 @@ echo Changing working directory to plugins
cd plugins cd plugins
echo Publishing... echo Publishing...
npm publish call npm publish
echo Cleaning up... echo Cleaning up...
cd .. cd ..