# inspired by auth

https://github.com/auth/auth-spa-js/


#### Mac overflow

https://github.com/meteor/meteor/issues/8057

```
echo kern.maxfiles=65536 | sudo tee -a /etc/sysctl.conf
echo kern.maxfilesperproc=65536 | sudo tee -a /etc/sysctl.conf
sudo sysctl -w kern.maxfiles=65536
sudo sysctl -w kern.maxfilesperproc=65536
ulimit -n 65536 65536 
```

```
brew update
brew install watchman
```


#### publish

```
git tag -a v0.0.1 -m "upbond version v0.0.1"
git push origin tags/v0.0.1
npm publish ./ --access public
```

> npm version major
# v1.0.0 から v2.0.0 へ変更

> npm version minor
# v1.0.0 から v1.1.0 へ変更

>npm version patch
# v1.0.0 から v1.0.1 へ変更

```
npm version patch
npm publish ./ --access public