An open API service indexing awesome lists of open source software.

https://github.com/danielearwicker/parcel-crash-repro

Parcel crash (due to nested calcs in scss?)
https://github.com/danielearwicker/parcel-crash-repro

Last synced: about 2 months ago
JSON representation

Parcel crash (due to nested calcs in scss?)

Awesome Lists containing this project

README

          

Clone, `yarn` and then `yarn start`.

Parcel crashes with SIGBUS on macOS or just silently exits on Windows 10.

If you change:

$variable-containing-calc: calc(0.5rem - 2px);

to

$variable-containing-calc: 0.5rem;

It works fine.