https://github.com/fullpipe/am-i-online
https://github.com/fullpipe/am-i-online
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fullpipe/am-i-online
- Owner: fullpipe
- License: mit
- Created: 2021-04-24T20:14:37.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-25T11:41:53.000Z (about 5 years ago)
- Last Synced: 2025-12-28T08:19:14.896Z (6 months ago)
- Language: TypeScript
- Size: 118 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ts-package-boilerplate
## Setup
`build/` dir not ignored by default.
## Publish
### Login
In order to publish your package, you need to create an NPM account.
If you don’t have an account run command `npm adduser`
If you already have an account, run `npm login` to login to you NPM account.
### Publish
To publish your package run
```
npm publish
```
### Versioning
To patch
```
npm version patch
npm publish
```
`version` command executes `git add ...` and `git push`, see `package.json`
## Todo
- [ ] add github actions for tests and build?