16 lines
		
	
	
		
			394 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			394 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env node
 | |
| 
 | |
| 'use strict';
 | |
| 
 | |
| let childProcess = require('child_process');
 | |
| 
 | |
| childProcess.spawn('npm', ['shrinkwrap', '--dev'], {stdio: 'inherit'}).on('exit', (exitCode) => {
 | |
|   if (exitCode !== 0) return;
 | |
| 
 | |
|   childProcess.fork('./tools/npm/clean-shrinkwrap.js').on('exit', (exitCode) => {
 | |
|     if (exitCode !== 0) return;
 | |
| 
 | |
|     childProcess.fork('./tools/npm/copy-npm-shrinkwrap');
 | |
|   });
 | |
| });
 |