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?)
- Host: GitHub
- URL: https://github.com/danielearwicker/parcel-crash-repro
- Owner: danielearwicker
- License: mit
- Created: 2023-03-12T13:32:53.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-12T13:40:59.000Z (about 3 years ago)
- Last Synced: 2026-01-03T20:46:53.462Z (5 months ago)
- Language: SCSS
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.