UNPKG

@yantra-core/cli

Version:

CLI for Yantra.gg Serverless Physics SDK, providing tools for game development and deployment on Node

12 lines (8 loc) 210 B
#!/usr/bin/env node import init from '../lib/init.js'; async function go() { // Extract world name from command line arguments const [worldname] = process.argv.slice(2); init.clone(worldname); } go();