14 lines
315 B
JavaScript
14 lines
315 B
JavaScript
#!/usr/bin/env node
|
|
|
|
// const fs = require('fs');
|
|
// const args = process.argv;
|
|
|
|
create();
|
|
|
|
function create() {
|
|
console.log("Create a new McFly app!");
|
|
console.log(
|
|
"This is not ready yet, see steps on how to create a new McFly app in our project README: https://ayco.io/gh/McFly#readme"
|
|
);
|
|
return 1;
|
|
}
|