mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
17 lines
335 B
JavaScript
17 lines
335 B
JavaScript
const promptRun = require('prompt-run');
|
|
|
|
promptRun({
|
|
command: 'npm run start:dev',
|
|
options: {},
|
|
questions: {
|
|
env: [
|
|
{
|
|
type: 'list',
|
|
name: 'APP_ID',
|
|
message: 'Select app to start',
|
|
choices: ['com.insomnia.app', 'com.insomnia.designer'],
|
|
},
|
|
],
|
|
},
|
|
}).then(childProcess => {});
|