Files
moeka-project/plugins/airi-plugin-vscode/scripts/vscode-ext-gen.ts
T

20 lines
551 B
TypeScript

import { dirname } from 'node:path'
import { exec } from 'tinyexec'
import { packageJSONForVSCode } from './shared'
async function run() {
const { restore, name } = await packageJSONForVSCode('airi-vscode')
const execGen = exec('pnpm', ['-F', name, 'exec', 'vscode-ext-gen', '--scope=unocss', '--output', 'src/generated/meta.ts'], { nodeOptions: { cwd: dirname(new URL('../', import.meta.url).pathname) } })
for await (const line of execGen) {
// eslint-disable-next-line no-console
console.log(line)
}
await restore()
}
run()