mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-03 17:51:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			654 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			654 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
export NVM_DIR="$HOME/.nvm"
 | 
						|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
 | 
						|
nvm use 6
 | 
						|
 | 
						|
set -x
 | 
						|
 | 
						|
# install the other dependencies
 | 
						|
npm install
 | 
						|
 | 
						|
scripts/fetchdep.sh matrix-org matrix-js-sdk
 | 
						|
rm -r node_modules/matrix-js-sdk || true
 | 
						|
ln -s ../matrix-js-sdk node_modules/matrix-js-sdk
 | 
						|
(cd matrix-js-sdk && npm install)
 | 
						|
 | 
						|
# run the mocha tests
 | 
						|
npm run test -- --no-colors
 | 
						|
 | 
						|
# run eslint
 | 
						|
npm run lintall -- -f checkstyle -o eslint.xml || true
 | 
						|
 | 
						|
# re-run the linter, excluding any files known to have errors or warnings.
 | 
						|
npm run lintwithexclusions
 | 
						|
 | 
						|
# delete the old tarball, if it exists
 | 
						|
rm -f matrix-react-sdk-*.tgz
 | 
						|
 | 
						|
# build our tarball
 | 
						|
npm pack
 |