45 lines
		
	
	
		
			831 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			831 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| 
 | |
| # Publishes Angular 2 packages to pub.
 | |
| 
 | |
| set -ex
 | |
| shopt -s extglob
 | |
| 
 | |
| DRY_RUN=false
 | |
| if [[ $1 == '--dry_run' ]]; then
 | |
|   DRY_RUN=true
 | |
| fi;
 | |
| 
 | |
| ROOT_DIR=$(cd $(dirname $0)/../..; pwd)
 | |
| cd $ROOT_DIR
 | |
| 
 | |
| gulp clean
 | |
| gulp build/packages.dart
 | |
| gulp build/pubspec.dart
 | |
| gulp build/analyze.dart
 | |
| gulp build.dart.material
 | |
| 
 | |
| PKG_DIR=$ROOT_DIR/dist/pub
 | |
| rm -fr $PKG_DIR
 | |
| FILES='!(e2e_test|pubspec.lock)'
 | |
| 
 | |
| function publishModule {
 | |
|   NAME=$1
 | |
|   PUBLISH_DIR=$PKG_DIR/$NAME
 | |
|   rm -fr $PUBLISH_DIR
 | |
|   mkdir -p $PUBLISH_DIR
 | |
| 
 | |
|   cp -RP $ROOT_DIR/dist/dart/$NAME/$FILES $PUBLISH_DIR
 | |
| 
 | |
|   node scripts/publish/pubspec_cleaner.js --pubspec-file=$PUBLISH_DIR/pubspec.yaml
 | |
| 
 | |
|   if [[ "$DRY_RUN" == "false" ]]; then
 | |
|     (cd $PUBLISH_DIR && pub publish -f)
 | |
|   fi;
 | |
| }
 | |
| 
 | |
| publishModule angular2
 | |
| publishModule benchpress
 | |
| publishModule benchmarks
 | |
| publishModule angular2_material
 |