https://github.com/frogo/onestepfrontend
https://github.com/frogo/onestepfrontend
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frogo/onestepfrontend
- Owner: frogo
- Created: 2019-05-30T08:04:19.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2020-04-21T14:31:34.000Z (about 6 years ago)
- Last Synced: 2025-02-06T21:31:07.570Z (over 1 year ago)
- Language: Vue
- Size: 5.57 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
develop
-------
```bash
npm install
npm run serve
```
CI build
--------
```bash
# install
npm install
# 1.0.0 > 1.0.1
npm run release
# 1.0.0 > 1.0.1-0
# npm run release -- --prerelease
# 1.0.0 > 1.0.1-alpha.0 ,alpha是自定义的可以写任意文字,比如:beta
# npm run release -- --prerelease alpha
# 1.0.0 > 1.1.0
# npm run release -- --release-as minor
# 1.0.0 > 2.0.0
# npm run release -- --release-as major
# push tag to remote
git push --follow-tags
# build
npm run build
```