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
Add --silent option to vuepress build
vuepress build
vuepress build --silent
vuepress build -s
vuepress build --silent / vuepress build -s should not produce output returning 0 on success and non-0 on failure
No I am not so good in it
The text was updated successfully, but these errors were encountered:
This can be done by redirecting stdout/stderr to /dev/null.
stdout/stderr
/dev/null
yarn build > "/dev/null" 2>&1 # or # npm run build > "/dev/null" 2>&1
Sorry, something went wrong.
No branches or pull requests
Feature request
Add --silent option to
vuepress build
What problem does this feature solve?
What does the proposed API look like?
vuepress build --silent
vuepress build -s
How should this be implemented in your opinion?
vuepress build --silent
/vuepress build -s
should not produce output returning 0 on success and non-0 on failureAre you willing to work on this yourself?**
No I am not so good in it
The text was updated successfully, but these errors were encountered: