#!/usr/bin/env node
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const child_process_1 = require("child_process");
const args = process.argv.slice(2).join(' ');
(0, child_process_1.execSync)(`npx --yes nx@latest init ${args}`, {
stdio: [0, 1, 2],
});