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
The whitespace removal plugin for rollup removes conditional logic and replaces with the post operator value.
function proof(someValue?: string) { return `Some text ${ someValue || '' }` }
post build becomes
function proof(someValue?: string) { return `Some text ` }
The text was updated successfully, but these errors were encountered:
Good find. Do we know if it’s just ignoring conditionals completely or replacing them with the post operator value?
Sorry, something went wrong.
[DA] Support logical expressions in templates #49
33d65d3
No branches or pull requests
The whitespace removal plugin for rollup removes conditional logic and replaces with the post operator value.
post build becomes
The text was updated successfully, but these errors were encountered: