feat: bump all files to GitHub 🎉

This commit is contained in:
EvolutionX
2022-04-16 11:09:38 +05:30
commit 01b39ad9b7
4 changed files with 6308 additions and 0 deletions

19
src/index.js Normal file
View File

@@ -0,0 +1,19 @@
#!/usr/bin/env node
const yargs = require('yargs');
yargs.scriptName('sern');
yargs.command({
command: 'init',
describe: 'Initialize a new project',
builder: {
name: {
describe: 'Project name',
demandOption: true,
type: 'string',
},
},
handler: function (argv) {
console.log('Initializing a new project...');
console.log('Project name: ' + argv.name);
},
}).argv;