fix: add semver dependency and correct NPM dist-tag configuration

- Add missing semver dependency to installer package.json
- Configure semantic-release to use correct channels (beta/latest)
- This ensures beta releases publish to @beta tag correctly
This commit is contained in:
Brian Madison 2025-08-15 19:33:07 -05:00 committed by manjaroblack
parent 430adbcf36
commit 7e7054b39a
No known key found for this signature in database
GPG Key ID: 02FD4111DA5560B4
2 changed files with 6 additions and 3 deletions

View File

@ -2,10 +2,12 @@
"branches": [
{
"name": "main",
"prerelease": "beta"
"prerelease": "beta",
"channel": "beta"
},
{
"name": "stable"
"name": "stable",
"channel": "latest"
}
],
"plugins": [

View File

@ -35,7 +35,8 @@
"fs-extra": "^11.3.0",
"inquirer": "^8.2.6",
"js-yaml": "^4.1.0",
"ora": "^5.4.1"
"ora": "^5.4.1",
"semver": "^7.6.3"
},
"engines": {
"node": ">=20.0.0"