mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			274 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			274 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
echo "Deleting generated apis..."
 | 
						|
rm -rf src/openapi/apis
 | 
						|
 | 
						|
# Remove all but last line from index.ts
 | 
						|
echo "Cleaning index.ts..."
 | 
						|
echo "export * from './models';" > src/openapi/index.ts
 | 
						|
echo '' >> src/openapi/index.ts
 | 
						|
 | 
						|
echo "Formatting..."
 | 
						|
yarn fmt
 | 
						|
 | 
						|
echo "Done!"
 |