napi-rs/src/version.ts
2020-09-08 09:21:59 +08:00

40 lines
1.1 KiB
TypeScript

import { join } from 'path'
import chalk from 'chalk'
import { Command } from 'clipanion'
import { getNapiConfig } from './consts'
import { debugFactory } from './debug'
import { spawn } from './spawn'
import { updatePackageJson } from './update-package'
const debug = debugFactory('version')
export class VersionCommand extends Command {
static async updatePackageJson(prefix: string, configFileName?: string) {
const { muslPlatforms, version, platforms } = getNapiConfig(configFileName)
for (const name of [...platforms, ...muslPlatforms]) {
const pkgDir = join(process.cwd(), prefix, name)
debug(
`Update version to ${chalk.greenBright(
version,
)} in [${chalk.yellowBright(pkgDir)}]`,
)
await updatePackageJson(join(pkgDir, 'package.json'), {
version,
})
}
}
@Command.String(`-p,--prefix`)
prefix = 'npm'
@Command.String('-c,--config')
configFileName?: string
@Command.Path('version')
async execute() {
await VersionCommand.updatePackageJson(this.prefix, this.configFileName)
await spawn('git add .')
}
}