UNPKG

@napi-rs/cli

Version:
16 lines (13 loc) 339 B
#!/usr/bin/env node import { execSync } from 'node:child_process' import { resolve } from 'node:path' import { fileURLToPath } from 'node:url' execSync( `node --import @oxc-node/core/register ${resolve( fileURLToPath(import.meta.url), '../src/cli.ts', )} ${process.argv.slice(2).join(' ')}`, { stdio: 'inherit', }, )