16 lines
		
	
	
		
			189 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			189 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
if [ -z "$1" ]; then
 | 
						|
    msg="Updates"
 | 
						|
else
 | 
						|
    msg="$1"
 | 
						|
fi
 | 
						|
 | 
						|
rm -rf dist
 | 
						|
tsc
 | 
						|
cp -r package-shared/data dist/package-shared/
 | 
						|
git add .
 | 
						|
git commit -m "$msg"
 | 
						|
git push
 | 
						|
bun publish
 |