mirror of
https://github.com/cupcakearmy/unbrew.git
synced 2024-12-22 16:16:26 +00:00
57 lines
1.3 KiB
JavaScript
Executable File
57 lines
1.3 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const cp = require('child_process')
|
|
const chalk = require('chalk')
|
|
|
|
const inquirer = require('inquirer')
|
|
|
|
function checkIfBrewIsInstalled() {
|
|
try {
|
|
cp.execSync('brew --version')
|
|
return true
|
|
} catch (e) {
|
|
return false
|
|
}
|
|
}
|
|
|
|
function getListOfLeaves() {
|
|
const list = cp.execSync('brew leaves', { encoding: 'utf-8' })
|
|
return list.trim().split('\n')
|
|
}
|
|
|
|
function getLoosers(keepers) {
|
|
return getListOfLeaves().filter((leave) => !keepers.includes(leave))
|
|
}
|
|
|
|
async function main() {
|
|
if (!checkIfBrewIsInstalled()) {
|
|
console.log(chalk.red.underline('Brew not installed'))
|
|
return
|
|
}
|
|
|
|
const { keepers } = await inquirer.prompt([
|
|
{
|
|
type: 'checkbox',
|
|
message: 'Uncheck all unwanted packages',
|
|
name: 'keepers',
|
|
choices: getListOfLeaves().map((leave) => ({
|
|
name: leave,
|
|
checked: true,
|
|
})),
|
|
},
|
|
])
|
|
|
|
console.log('🗑 Uninstalling:', chalk.bold.blue(getLoosers(keepers).join(' ')))
|
|
while (true) {
|
|
const loosers = getLoosers(keepers)
|
|
if (!loosers.length) break
|
|
|
|
const joinedLoosers = loosers.join(' ')
|
|
cp.execSync(`brew uninstall ${joinedLoosers}`)
|
|
}
|
|
console.log('🧽 Cleaning up')
|
|
cp.execSync(`brew cleanup`)
|
|
console.log(chalk.bold.green('🚀 Done'))
|
|
}
|
|
main()
|