mirror of
https://github.com/SrIzan10/sern-cli.git
synced 2026-05-01 11:05:17 +00:00
Co-authored-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Co-authored-by: jacob <jacoobes@sern.dev>
21 lines
566 B
TypeScript
21 lines
566 B
TypeScript
import type { PromptObject } from 'prompts';
|
|
|
|
export const extraPrompt: PromptObject = {
|
|
message: 'What extra feature do you want to add?',
|
|
name: 'extra',
|
|
type: 'select',
|
|
choices: [
|
|
{
|
|
title: 'Dockerfile (TypeScript)',
|
|
description: 'Dockerfile for TypeScript',
|
|
value: 'Dockerfile-typescript',
|
|
selected: true,
|
|
},
|
|
{
|
|
title: 'Dockerfile (JavaScript)',
|
|
description: 'Dockerfile for JavaScript',
|
|
value: 'Dockerfile-javascript',
|
|
},
|
|
],
|
|
};
|