https://github.com/snapview/sunrise
The reactive library for the spreadsheet driven development
https://github.com/snapview/sunrise
Last synced: 8 months ago
JSON representation
The reactive library for the spreadsheet driven development
- Host: GitHub
- URL: https://github.com/snapview/sunrise
- Owner: snapview
- License: mit
- Created: 2021-07-15T10:03:13.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-24T09:54:13.000Z (over 2 years ago)
- Last Synced: 2025-03-27T06:05:44.214Z (about 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 403 KB
- Stars: 34
- Watchers: 3
- Forks: 5
- Open Issues: 4
-
Metadata Files:
- Readme: README.dev.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Publish to npm
Normal commits will only be tested by CI - nothing more. To trigger publishing
to npm, you need to push [a tagged
commit](https://git-scm.com/book/en/v2/Git-Basics-Tagging).
Here is how you do this:
- increment version
- patch
```console
$ npm version patch
v0.0.10
```
- minor
```console
$ npm version minor
v0.1.0
```
- major
```console
$ npm version major
v1.0.0
```
- npm has increased version number in `package.json` and `package-lock.json`
and created a tagged commit with this new version number
- now push commit and tag
```console
$ git push --follow-tags
...
To github.com:snapview/sunrise.git
90c4052..e0bc73d master -> master
* [new tag] v0.0.9 -> v0.0.9
```