mirror of
				https://github.com/songquanpeng/one-api.git
				synced 2025-11-04 07:43:41 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			255 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			255 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
version=$(cat VERSION)
 | 
						|
pwd
 | 
						|
 | 
						|
while IFS= read -r theme; do
 | 
						|
    echo "Building theme: $theme"
 | 
						|
    rm -r build/$theme
 | 
						|
    cd "$theme"
 | 
						|
    npm install
 | 
						|
    DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$version npm run build
 | 
						|
    cd ..
 | 
						|
done < THEMES
 |