mirror of
https://github.com/enso-org/enso.git
synced 2024-12-21 01:01:42 +03:00
cf68e6848d
Original commit: a642c94958
74 lines
2.0 KiB
JavaScript
74 lines
2.0 KiB
JavaScript
let spawn = require('child_process').spawn
|
|
let exec = require('child_process').exec
|
|
|
|
function section(title) {
|
|
let border = '-'.repeat(8 + title.length)
|
|
let middle = '--- ' + title + ' ---'
|
|
console.log()
|
|
console.log()
|
|
console.log()
|
|
console.log(border)
|
|
console.log(middle)
|
|
console.log(border)
|
|
console.log()
|
|
}
|
|
|
|
async function with_cwd(dir,fn) {
|
|
let cwd = process.cwd()
|
|
process.chdir(dir)
|
|
let out = await fn()
|
|
process.chdir(cwd)
|
|
return out
|
|
}
|
|
|
|
function run(cmd,args) {
|
|
let out = ''
|
|
return new Promise((resolve, reject) => {
|
|
console.log(`Calling '${cmd} ${args.join(' ')}'`)
|
|
let proc = spawn(cmd,args,{stdio:'inherit', shell:true})
|
|
proc.on('exit', (code) => {
|
|
if (code) process.exit(code)
|
|
resolve(out)
|
|
})
|
|
})
|
|
}
|
|
|
|
function run_read(cmd,args) {
|
|
let out = ''
|
|
return new Promise((resolve, reject) => {
|
|
let proc = spawn(cmd,args,{shell:true})
|
|
proc.stderr.pipe(process.stderr)
|
|
proc.stdout.on('data', (data) => { out += data })
|
|
proc.on('exit', (code) => {
|
|
if (code) process.exit(code);
|
|
resolve(out)
|
|
})
|
|
})
|
|
}
|
|
|
|
async function check_version (name,required,cfg) {
|
|
if (!cfg) { cfg = {} }
|
|
let version = await run_read(name,['--version'])
|
|
version = version.trim()
|
|
if (cfg.preprocess) { version = cfg.preprocess(version) }
|
|
if (cfg.silent !== true) {
|
|
console.log(`Checking if '${name}' version is '${required}'.`)
|
|
}
|
|
if (version != required) {
|
|
throw `[ERROR] The '${name}' version '${version}' does not match the required one '${required}'.`
|
|
}
|
|
}
|
|
|
|
async function get_npm_info (name) {
|
|
let info = await run_read('npm',['info',name,'--json'])
|
|
return JSON.parse(info)
|
|
}
|
|
|
|
async function get_npm_lts_version_of (name) {
|
|
let info = await get_npm_info(name)
|
|
version = info['dist-tags'].lts
|
|
return version
|
|
}
|
|
|
|
module.exports = {section,run,run_read,check_version,get_npm_info,get_npm_lts_version_of,with_cwd}
|