Update version to 1.0.5 in package.json and simplify ci-deploy script by removing explicit beta flag argument.

This commit is contained in:
2025-11-22 22:51:54 -05:00
parent 7b3264f7f4
commit ae7dec8ea8

View File

@@ -1,6 +1,6 @@
{ {
"name": "@techniker-me/hash-map", "name": "@techniker-me/hash-map",
"version": "1.0.4", "version": "1.0.5",
"description": "A robust HashMap implementation following OOP SOLID principles", "description": "A robust HashMap implementation following OOP SOLID principles",
"module": "src/index.ts", "module": "src/index.ts",
"type": "module", "type": "module",
@@ -25,8 +25,8 @@
"ci-install": "bun install", "ci-install": "bun install",
"ci-test": "bun run test:teamcity", "ci-test": "bun run test:teamcity",
"ci-build": "bash scripts/ci-build.sh", "ci-build": "bash scripts/ci-build.sh",
"ci-deploy:ga": "bash scripts/ci-deploy.sh --beta false", "ci-deploy:ga": "bash scripts/ci-deploy.sh",
"ci-deploy:beta": "bash scripts/ci-deploy.sh --beta true", "ci-deploy:beta": "bash scripts/ci-deploy.sh --beta",
"format": "bun run prettier --write .", "format": "bun run prettier --write .",
"lint": "eslint", "lint": "eslint",
"prelint:fix": "bun run format", "prelint:fix": "bun run format",