You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							30 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							1.1 KiB
						
					
					
				#!/bin/sh | 
						|
 | 
						|
die () { echo "$@" ; exit 1; } | 
						|
 | 
						|
. ../../../nvm.sh | 
						|
 | 
						|
nvm exec 0.10.28 npm install -g npm@~1.4.11 # this is required because before 1.4.10, npm ls doesn't indicated linked packages | 
						|
nvm exec 0.10.29 npm install -g npm@~1.4.11 # this is required because before 1.4.10, npm ls doesn't indicated linked packages | 
						|
 | 
						|
nvm use 0.10.28 | 
						|
(cd test-npmlink && npm link) | 
						|
 | 
						|
EXPECTED_PACKAGES="autoprefixer bower david eslint grunt-cli grunth-cli http-server jshint marked node-gyp npmlist recursive-blame spawn-sync test-npmlink uglify-js yo" | 
						|
 | 
						|
echo "$EXPECTED_PACKAGES" | sed -e 's/test-npmlink //' | xargs npm install -g --quiet | 
						|
 | 
						|
get_packages() { | 
						|
  npm list -g --depth=0 | \sed -e '1 d' -e 's/^.* \(.*\)@.*/\1/' -e '/^npm$/ d' | xargs | 
						|
} | 
						|
 | 
						|
nvm use 0.10.29 | 
						|
ORIGINAL_PACKAGES=$(get_packages) | 
						|
 | 
						|
nvm reinstall-packages 0.10.28 | 
						|
FINAL_PACKAGES=$(get_packages) | 
						|
 | 
						|
[ "$FINAL_PACKAGES" = "$EXPECTED_PACKAGES" ] || die "final packages ($FINAL_PACKAGES) did not match expected packages ($EXPECTED_PACKAGES)" | 
						|
[ "$ORIGINAL_PACKAGES" != "$FINAL_PACKAGES" ] || die "original packages matched final packages ($ORIGINAL_PACKAGES)" | 
						|
 | 
						|
[ $(test-npmlink) = 'ok' ] || die "failed to run test-npmlink"
 | 
						|
 |