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.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							436 B
						
					
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							436 B
						
					
					
				| #!/usr/bin/env node
 | |
| 
 | |
| const cli = require('../lib/cli');
 | |
| const nodemon = require('../lib/');
 | |
| const options = cli.parse(process.argv);
 | |
| 
 | |
| nodemon(options);
 | |
| 
 | |
| const fs = require('fs');
 | |
| 
 | |
| // checks for available update and returns an instance
 | |
| const pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json'));
 | |
| 
 | |
| if (pkg.version.indexOf('0.0.0') !== 0 && options.noUpdateNotifier !== true) {
 | |
|   require('simple-update-notifier')({ pkg });
 | |
| }
 |