mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
16 lines
315 B
JavaScript
16 lines
315 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) => {
|
|
});
|