Skip to content

Commit

Permalink
feat(cli): remove devMode question from plugins command (#1786)
Browse files Browse the repository at this point in the history
  • Loading branch information
patzick authored Jan 19, 2022
1 parent ec0945b commit 894ea98
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions packages/cli/src/commands/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,10 @@ module.exports = {
footer: process.env.ADMIN_PASSWORD && "password from .env is hidden",
};

const devModeQuestion = !inputParameters.devMode && {
type: "confirm",
name: "devMode",
message:
"Do you want to allow dev mode for slots? (Don't use for production!)",
};

const answers = await toolbox.prompt.ask([
shopwareUsernameQuestion,
shopwarePasswordQuestion,
devModeQuestion,
]);
Object.assign(inputParameters, answers);
}
Expand Down

0 comments on commit 894ea98

Please sign in to comment.