12 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Verify peer deps constraints and package.json before publishing to npm
 | 
						|
# There should be no npm errors
 | 
						|
 | 
						|
mkdir tmp
 | 
						|
cd tmp
 | 
						|
npm init -y
 | 
						|
npm install --save ../dist/packages-dist/* typescript@~2.7 rxjs@^6.0.0-beta.4 zone.js@~0.8.20
 | 
						|
cd ..
 | 
						|
rm -rf ./tmp
 |