13 lines
		
	
	
		
			312 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			312 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var nixt = require('nixt')
 | |
| 
 | |
| module.exports = function (cwd, uri) {
 | |
|   return nixt()
 | |
|     .cwd(cwd)
 | |
|     .env('NPM_OLD_TOKEN', 'aW50ZWdyYXRpb246c3VjaHNlY3VyZQ==')
 | |
|     .env('NPM_EMAIL', 'integration@test.com')
 | |
|     .env('GH_TOKEN', 'ghtoken')
 | |
|     .env('CI', 'true')
 | |
|     .env('npm_config_registry', uri)
 | |
|     .clone()
 | |
| }
 |