19 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/bash
 | |
| set -ex
 | |
| shopt -s extglob
 | |
| 
 | |
| ROOT_DIR=$(cd $(dirname $0)/../..; pwd)
 | |
| cd $ROOT_DIR
 | |
| 
 | |
| gulp clean
 | |
| # benchpress.bundle and bundles.js will implicitly build everything we need
 | |
| gulp benchpress.bundle bundles.js
 | |
| 
 | |
| NPM_DIR=$ROOT_DIR/dist/npm
 | |
| 
 | |
| scripts/publish/npm_prepare.sh angular2
 | |
| scripts/publish/npm_prepare.sh benchpress
 | |
| 
 | |
| npm publish $NPM_DIR/angular2
 | |
| npm publish $NPM_DIR/benchpress
 |