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
						
					
					
						
							356 B
						
					
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							356 B
						
					
					
				let { execSync } = require('child_process')
 | 
						|
let pico = require('picocolors')
 | 
						|
 | 
						|
try {
 | 
						|
  let version = parseInt(execSync('npm -v'))
 | 
						|
  if (version <= 6) {
 | 
						|
    process.stderr.write(
 | 
						|
      pico.red(
 | 
						|
        'Update npm or call ' +
 | 
						|
          pico.yellow('npx browserslist@latest --update-db') +
 | 
						|
          '\n'
 | 
						|
      )
 | 
						|
    )
 | 
						|
    process.exit(1)
 | 
						|
  }
 | 
						|
} catch (e) {}
 |