16 lines
		
	
	
		
			451 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			451 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
|  | #!/bin/bash
 | ||
|  | set -e | ||
|  | 
 | ||
|  | echo ============================================================================= | ||
|  | echo EXPERIMENTAL DART BUILD | ||
|  | echo ============================================================================= | ||
|  | 
 | ||
|  | # go to project dir | ||
|  | SCRIPT_DIR=$(dirname $0) | ||
|  | source $SCRIPT_DIR/env_dart.sh | ||
|  | cd $SCRIPT_DIR/../.. | ||
|  | 
 | ||
|  | ./node_modules/.bin/gulp build/packages.dart | ||
|  | ./node_modules/.bin/gulp build/pubspec.dart | ||
|  | ./node_modules/.bin/gulp build/analyze.ddc.dart |