-
Notifications
You must be signed in to change notification settings - Fork 0
/
ramp-cli.js
executable file
·41 lines (39 loc) · 952 Bytes
/
ramp-cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env node
import inquirer from 'inquirer';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
import { createRAMP } from './commands/createRAMP.js';
import { generateModelFiles } from './commands/generateModelFiles.js';
yargs(hideBin(process.argv))
.command(
'create',
'Crea las rutas base para el remix admin panel',
{
force: {
alias: 'f',
description: 'Sobrescribe los archivos existentes',
type: 'boolean',
default: false,
},
},
createRAMP
)
.help()
.parse();
yargs(hideBin(process.argv))
.command(
'generate',
'Genera archivos para un modelo seleccionado',
{
force: {
alias: 'f',
description: 'Sobrescribe los archivos existentes',
type: 'boolean',
default: false,
},
},
generateModelFiles
)
.demandCommand(1, 'Debe especificar un comando para ejecutar')
.help()
.parse();