# Getting Started with With admin sdk

## Install sdk
```sh
yarn add admin-sdk
```
<br/> 

## Versioning npm
```sh 
npm version major
```
 Example "1.2.3". The number 1 is the major. Use the major when the package becomes incompatible <br/>

```sh
npm version minor
```
 Example "1.2.3". The number 2 is the minor. Use the minor when you add a new feature <br/> 

 ```sh
 npm version patch
 ```
 Example "1.2.3". The number 3 is the patch. Use the major when to make a correction <br/><br/> 
 
 ## Build sdk comand
```sh 
yarn build
```
<br/>

## Publish version
```sh
npm publish
``` 