| 
									
										
										
										
											2015-11-17 21:35:29 -08:00
										 |  |  | #!/bin/bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # This script prepares build artifacts for upload to NPM. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Usage: | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # scripts/publish/npm_prepare.sh PACKAGE_NAME | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | set -ex | 
					
						
							|  |  |  | shopt -s extglob | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | NAME=$1 | 
					
						
							|  |  |  | ROOT_DIR=$(cd $(dirname $0)/../..; pwd) | 
					
						
							|  |  |  | cd $ROOT_DIR | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | NPM_DIR=$ROOT_DIR/dist/npm | 
					
						
							|  |  |  | FILES='!(test|e2e_test|docs)' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PUBLISH_DIR=$NPM_DIR/$NAME | 
					
						
							|  |  |  | rm -fr $PUBLISH_DIR | 
					
						
							|  |  |  | mkdir -p $PUBLISH_DIR | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | mkdir -p $PUBLISH_DIR/es6/dev | 
					
						
							|  |  |  | cp -r $ROOT_DIR/dist/js/dev/es6/$NAME/$FILES $PUBLISH_DIR/es6/dev | 
					
						
							|  |  |  | mkdir -p $PUBLISH_DIR/es6/prod | 
					
						
							|  |  |  | cp -r $ROOT_DIR/dist/js/prod/es6/$NAME/$FILES $PUBLISH_DIR/es6/prod | 
					
						
							|  |  |  | mkdir -p $PUBLISH_DIR/ts | 
					
						
							|  |  |  | cp -r $ROOT_DIR/modules/$NAME/$FILES $PUBLISH_DIR/ts | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ $NAME = "angular2" ]; then | 
					
						
							|  |  |  |   # Copy Bundles | 
					
						
							| 
									
										
										
										
											2016-02-05 11:30:18 -08:00
										 |  |  |   mkdir -p $PUBLISH_DIR/bundles | 
					
						
							| 
									
										
										
										
											2015-11-17 21:35:29 -08:00
										 |  |  |   cp -r $ROOT_DIR/dist/js/bundle/$FILES $PUBLISH_DIR/bundles | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ $NAME = "benchpress" ]; then | 
					
						
							|  |  |  |   cp -r $ROOT_DIR/dist/build/benchpress_bundle/$FILES $PUBLISH_DIR | 
					
						
							|  |  |  |   cp -r $ROOT_DIR/dist/js/cjs/benchpress/README.md $PUBLISH_DIR | 
					
						
							|  |  |  |   cp -r $ROOT_DIR/dist/js/cjs/benchpress/LICENSE $PUBLISH_DIR | 
					
						
							|  |  |  |   cp -r $ROOT_DIR/dist/js/cjs/benchpress/docs $PUBLISH_DIR | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   cp -r $ROOT_DIR/dist/js/cjs/$NAME/$FILES $PUBLISH_DIR | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Remove all dart related files | 
					
						
							|  |  |  | rm -f $PUBLISH_DIR/{,**/}{*.dart,*.dart.md} |