Skip to content

Latest commit

 

History

History
26 lines (12 loc) · 697 Bytes

File metadata and controls

26 lines (12 loc) · 697 Bytes

Release Guide.

To Release your project to Github

  1. Make sure your project is configured with a Remote Github Repository.

  2. Run any of the following command ```

     // Patch release: increases your last version number, example 1.1.3 will become 1.1.4
            
         npm run release-patch 
     
     
    // Minor release: increases your middle version number, example 1.1.3 will become 1.2.0
    
         npm run release-minor
    
             
     // Major release: increases your first version number, example 1.1.3 will become 2.0.0
                    
         npm run release-major 
    ```