66 lines
2.0 KiB
TypeScript
66 lines
2.0 KiB
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
import execa from 'execa'
|
|
import ora from 'ora'
|
|
import chalk from 'chalk'
|
|
|
|
const packages: string[] = [
|
|
...fs.readdirSync(path.join(__dirname, '../packages'))
|
|
.filter((file) => file !== '.DS_Store')
|
|
.map(dir => path.join('../packages', dir)),
|
|
'../docs'
|
|
]
|
|
|
|
const dependencies = packages.map((dir: string) => {
|
|
const pkg = fs.readFileSync(path.join(__dirname, dir, 'package.json'), 'utf-8')
|
|
const { dependencies, devDependencies } = JSON.parse(pkg)
|
|
return {
|
|
dirname: path.join(__dirname, dir),
|
|
dependencies: filterVuePress(Object.keys(dependencies || {})),
|
|
devDependencies: filterVuePress(Object.keys(devDependencies || {}))
|
|
}
|
|
})
|
|
|
|
function filterVuePress(dependencies: string[]) {
|
|
const vuepress = dependencies.filter(
|
|
dependence => dependence.startsWith('@vuepress/') || dependence.startsWith('vuepress-')
|
|
).map(dependence => dependence + '@next')
|
|
const includes = ['vue', 'vue-router']
|
|
const vue = dependencies.filter(
|
|
dependence => includes.includes(dependence)
|
|
).map(dependence => dependence + '@latest')
|
|
return [...vue, ...vuepress]
|
|
}
|
|
|
|
const options: [string, string[], { cwd: string }][] = []
|
|
dependencies.forEach(({ dirname, dependencies, devDependencies }) => {
|
|
if (dependencies.length) {
|
|
options.push(['pnpm', ['add', ...dependencies], { cwd: dirname }])
|
|
}
|
|
if (devDependencies.length) {
|
|
options.push(['pnpm', ['add', '-D', ...devDependencies], { cwd: dirname }])
|
|
}
|
|
})
|
|
|
|
async function install(index = 0) {
|
|
if (index >= options.length) return
|
|
const spinner = ora()
|
|
const opt = options[index]
|
|
const dir = opt[2].cwd.split('/').slice(-2).join('/')
|
|
console.log('Installing ', chalk.cyan(dir));
|
|
console.log(chalk.gray(opt[0], opt[1].join(' ')));
|
|
console.log('\n');
|
|
const current = execa(opt[0], opt[1], opt[2])
|
|
current?.stdout?.pipe(process.stdout)
|
|
try {
|
|
await current;
|
|
spinner.succeed('Installed.')
|
|
await install(index + 1)
|
|
} catch(e) {
|
|
spinner.fail('Install Fail.')
|
|
console.log(e)
|
|
}
|
|
}
|
|
|
|
install()
|