dart-sass
dart-sass copied to clipboard
The reference implementation of Sass, written in Dart.
For the following inputs `dart-sass` will raise an exception, ```scss $a: ((0/0): a); ``` ```scss $a: ((1/0): a); ``` ```scss $a: ((-1/0): a); ``` Stacktrace ``` Unexpected exception: Unsupported operation:...
This would enable in-browser use, use in a service worker, etc.
Latest Sass on both Windows & OSX I get the following error > [email protected] build:css:cdn: `sass src/css/vjs-cdn.scss dist/alt/video-js-cdn.css "--watch" "'src/**/**/*.scss'"` This command works fine as-is in node-sass, but errors out...
We're using the Sass CLI to watch and recompile files in several package in a monorepo. Using the --watch flag appears to make the CLI watch every file in a...
When running `dartsass:watch` Inside a folder path that has a space in the folder, the compile fails; **Positional and ":" arguments may not both be used.** Folder path: `/Users/Stewart/Development Offline/LLO/APP`...
Currently, when running a Debian-based Linux distribution (Ubuntu in my case), I have 2 choices to install sass: - download the compiled executable manually from github releases, and update it...
How come dart sass is available on both brew and choco, but not apt? If there is no plans to put it up there, I think the instructions for installing...
The `map.deep-merge($map1, $map2)` function returns a map where all entries from `$map2` appear first, and any unique entries from `$map1` are pushed to the end. This is the opposite behaviour...
A static analysis tool that uses AST nodes to track scope doesn't currently have any node for rest arguments. This means it can miss those definitions when determining what a...
I want to implement SASS parser for @postcss - written by @ai. But for this purpose I need convert SASS AST to PostCSS AST. It would be great, if I...