20 lines
		
	
	
	
		
			622 B
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			622 B
		
	
	
	
		
			Text
		
	
	
		
			Executable file
		
	
	
	
	
| set -e
 | |
| 
 | |
| THIS_SCRIPT=$(dirname "$0");
 | |
| WASM_PROJECT=$THIS_SCRIPT/../../automerge-wasm;
 | |
| JS_PROJECT=$THIS_SCRIPT/../../automerge-js;
 | |
| 
 | |
| yarn --cwd $WASM_PROJECT install;
 | |
| # This will take care of running wasm-pack
 | |
| yarn --cwd $WASM_PROJECT build;
 | |
| # If the dependencies are already installed we delete automerge-wasm. This makes
 | |
| # this script usable for iterative development.
 | |
| if [ -d $JS_PROJECT/node_modules/automerge-wasm ]; then
 | |
|     rm -rf $JS_PROJECT/node_modules/automerge-wasm
 | |
| fi
 | |
| # --check-files forces yarn to check if the local dep has changed
 | |
| yarn --cwd $JS_PROJECT install --check-files;
 | |
| yarn --cwd $JS_PROJECT test;
 | |
| 
 | |
| 
 | |
| 
 |