We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now, config validation is not turned on by default and only certain commands turn it on, like the app pack command:
app pack
aio-cli-plugin-app/src/commands/app/pack.js
Line 43 in 4fb2a25
Modify BaseCommand.getFullConfig to validate the app config by default - this means that all commands that call getFullConfig will validate the config by default, even if they don't use the whole config: https://github.com/search?q=repo%3Aadobe%2Faio-cli-plugin-app%20getFullConfig&type=code
BaseCommand.getFullConfig
getFullConfig
BaseCommand.getFullConfig:
aio-cli-plugin-app/src/BaseCommand.js
Line 147 in 4fb2a25
Provide a shared flag in the BaseCommand to turn off config validation, just in case there are issues:
BaseCommand
config-validation
allowsNo : true
default: true
The text was updated successfully, but these errors were encountered:
JIRA issue created: https://jira.corp.adobe.com/browse/ACNA-3510
Sorry, something went wrong.
No branches or pull requests
Right now, config validation is not turned on by default and only certain commands turn it on, like the
app pack
command:aio-cli-plugin-app/src/commands/app/pack.js
Line 43 in 4fb2a25
Modify
BaseCommand.getFullConfig
to validate the app config by default - this means that all commands that callgetFullConfig
will validate the config by default, even if they don't use the whole config:https://github.com/search?q=repo%3Aadobe%2Faio-cli-plugin-app%20getFullConfig&type=code
BaseCommand.getFullConfig
:aio-cli-plugin-app/src/BaseCommand.js
Line 147 in 4fb2a25
Provide a shared flag in the
BaseCommand
to turn off config validation, just in case there are issues:config-validation
andallowsNo : true
,default: true
.getFullConfig
method should read the flag directlyBaseCommand
flagsThe text was updated successfully, but these errors were encountered: