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.
16 lines
354 B
16 lines
354 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 update-browserslist-db@latest') + |
|
'\n' |
|
) |
|
) |
|
process.exit(1) |
|
} |
|
} catch (e) {}
|
|
|