🚧 Process for setting up projects

Note that I am still working on a process for setting up the nessisary file structure
This commit is contained in:
trickypr 2021-09-20 18:33:19 +10:00
parent 52b13eb00c
commit 49695449c7
12 changed files with 180 additions and 33 deletions

View file

@ -18,6 +18,7 @@ import {
status,
test,
} from './commands'
import { setupProject } from './commands/setupProject'
import { Cmd } from './types'
export const commands: Cmd[] = [
@ -135,6 +136,11 @@ export const commands: Cmd[] = [
description: 'Change the default branch.',
controller: setBranch,
},
{
cmd: 'setup-project',
description: 'Sets up a melon project for the first time',
controller: setupProject,
},
{
cmd: 'status',
description: 'Status and files changed for src directory.',