14 lines
		
	
	
		
			308 B
		
	
	
	
		
			Bash
		
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			308 B
		
	
	
	
		
			Bash
		
	
	
	
|  | #!/usr/bin/env bash
 | ||
|  | set -e | ||
|  | 
 | ||
|  | if ! [ -x "$(command -v standard-version)" ]; then | ||
|  |   echo "standard-version is not installed. please run 'npm i -g standard-version'" | ||
|  |   exit 1 | ||
|  | fi | ||
|  | 
 | ||
|  | standard-version --dry-run --skip | ||
|  | read -p "Continue (y/n)? " -n 1 -r | ||
|  | echo ; | ||
|  | if [[ $REPLY =~ ^[Yy]$ ]]; then | ||
|  | 	standard-version -s ; | ||
|  | fi |