Conversation
There was a problem hiding this comment.
What exactly does this do to help with development?
There was a problem hiding this comment.
- added a
serverconfig to thevite.config.tsfile inorder enable development server hosting on the local network.- add a Github Release action that automatically versions the software and creates a github release and version tag. Also generates a Changelog.md file and auto-populates it.
Uses an npm package
semantic-releaseto do this. The tool analyzes commit history to determine the version number. The commit key-words and config for sematic-release is the.releasercfile.
its all written here. The server object allows hosting the server on the local machine running the vite dev environment and broadcast the vite dev server on the local network. Allowing access of the dev project from any other machine on the same network. Very useful for testing and development.
The semantic release is for automating version control based on a config and commit history, autogenerated a changelog and follows professional semver.
serverconfig to thevite.config.tsfile inorder enable development server hosting on the local network.Uses an npm package
semantic-releaseto do this. The tool analyzes commit history to determine the version number. The commit key-words and config for sematic-release is the.releasercfile.