Update package version to 1.0.11 in package.json and modify ci-deploy.sh to publish with 'latest' tag and include a completion message.

This commit is contained in:
2025-11-23 01:24:18 -05:00
parent ca935c98d6
commit f6d94c8311
2 changed files with 6 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@techniker-me/hash-map", "name": "@techniker-me/hash-map",
"version": "1.0.10", "version": "1.0.11",
"description": "A robust HashMap implementation following OOP SOLID principles", "description": "A robust HashMap implementation following OOP SOLID principles",
"type": "module", "type": "module",
"main": "./node/index.js", "main": "./node/index.js",

View File

@@ -69,5 +69,8 @@ cd dist
if [ "${isBeta}" == "true" ]; then if [ "${isBeta}" == "true" ]; then
bun publish --registry "${registryUrl}" --tag beta bun publish --registry "${registryUrl}" --tag beta
else else
bun publish --registry "${registryUrl}" bun publish --registry "${registryUrl}" --tag latest
fi fi
echo "Deployment complete!"
exit 0