mirror of
https://github.com/sern-handler/cli
synced 2026-06-27 18:22:20 +00:00
19 lines
404 B
JavaScript
19 lines
404 B
JavaScript
export const extraPrompt = {
|
|
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',
|
|
},
|
|
],
|
|
};
|