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
It's not my SO post, but this is essentially what I'm seeing: https://stackoverflow.com/questions/43940649/unexpected-node-type-error-sequenceexpression-with-jest
Essentially, istanbul and polished babel plugins don't play well with each other.
istanbul
polished
Here's out callstack:
SyntaxError: /next/app/components/FloatingActionButton/ui.tsx: Unexpected node type: SequenceExpression (This is an error on an internal node. Probably an internal error. Location has been estimated.) 28 | z-index: ${({ zIndex }) => zIndex || '2'}; 29 | list-style-type: none; > 30 | background-color: ${({ theme, active }) => (active ? rgba(theme.colors.white, 0.5) : theme.colors.transparent)}; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 31 | pointer-events: ${({ active }) => (active ? 'auto' : 'none')}; 32 | -webkit-tap-highlight-color: ${({ theme }) => theme.colors.transparent}; 33 | at Array.filter (<anonymous>) at Array.filter (<anonymous>)
Our workaround was to only use the plugin on env.prod in the .babelrc.
env.prod
.babelrc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It's not my SO post, but this is essentially what I'm seeing: https://stackoverflow.com/questions/43940649/unexpected-node-type-error-sequenceexpression-with-jest
Essentially,
istanbul
andpolished
babel plugins don't play well with each other.Here's out callstack:
Our workaround was to only use the plugin on
env.prod
in the.babelrc
.The text was updated successfully, but these errors were encountered: