You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							312 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							312 B
						
					
					
				
								SHELL := /bin/bash
							 | 
						|
								
							 | 
						|
								release-major: test
							 | 
						|
									npm version major -m "Release %s"
							 | 
						|
									git push
							 | 
						|
									npm publish
							 | 
						|
								
							 | 
						|
								release-minor: test
							 | 
						|
									npm version minor -m "Release %s"
							 | 
						|
									git push
							 | 
						|
									npm publish
							 | 
						|
								
							 | 
						|
								release-patch: test
							 | 
						|
									npm version patch -m "Release %s"
							 | 
						|
									git push
							 | 
						|
									npm publish
							 | 
						|
								
							 | 
						|
								.PHONY: test release-major release-minor release-patch
							 | 
						|
								
							 |