@@ -2,21 +2,25 @@ import { join } from 'path'
|
||||
import prompts from 'prompts'
|
||||
import { isEmpty } from 'utils'
|
||||
|
||||
export const promptAndSetEnvironment = async () => {
|
||||
const response = await prompts({
|
||||
type: 'select',
|
||||
name: 'env',
|
||||
message: 'Pick an environment',
|
||||
choices: [
|
||||
{
|
||||
title: 'Local',
|
||||
value: 'local',
|
||||
},
|
||||
{ title: 'Staging', value: 'staging' },
|
||||
{ title: 'Production', value: 'production' },
|
||||
],
|
||||
initial: 0,
|
||||
})
|
||||
export const promptAndSetEnvironment = async (
|
||||
skipPrompt?: 'local' | 'staging' | 'production'
|
||||
) => {
|
||||
const response = skipPrompt
|
||||
? { env: skipPrompt }
|
||||
: await prompts({
|
||||
type: 'select',
|
||||
name: 'env',
|
||||
message: 'Pick an environment',
|
||||
choices: [
|
||||
{
|
||||
title: 'Local',
|
||||
value: 'local',
|
||||
},
|
||||
{ title: 'Staging', value: 'staging' },
|
||||
{ title: 'Production', value: 'production' },
|
||||
],
|
||||
initial: 0,
|
||||
})
|
||||
|
||||
if (isEmpty(response.env)) process.exit()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user