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.
18 lines
401 B
18 lines
401 B
4 weeks ago
|
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)
|
||
|
}
|
||
|
// eslint-disable-next-line no-unused-vars
|
||
|
} catch (e) {}
|