dart-sass
dart-sass copied to clipboard
The reference implementation of Sass, written in Dart.
Tried to do so: @mixin columnCount($count) { -webkit-column-count: $count; -moz-column-count: $count; column-count: $count; } @mixin columnGap($gap) { -webkit-column-gap: $gap; -moz-column-gap: $gap; column-gap: $gap; } @mixin columns($count, $gap){ @include columnCount($count); @include...
similar to https://github.com/sass/dart-sass/issues/9 but for: ```css background-url: url("./path/to/image.png"); ```
The following input: ```scss div { /* one * two * three */ top: 10px; } ``` produces this output: ```css div { /* one * two * three */...
It does currently not seem possible to import a SASS file from another package. Like `@import 'package/mypackage/mysassfile'`. Is it possible to support this?
The [Dart dev compiler](https://github.com/dart-lang/sdk/tree/master/pkg/dev_compiler) produces much nicer-looking JavaScript output than dart2js, and makes JavaScript interop much nicer by guaranteeing that all Dart objects can be used directly in JS without...
We should ship the source map for the JS-compiled version of Sass with the npm package, and use the [`source_map_stack_trace`](https://www.reddit.com/r/dartlang/comments/5afab8/announcing_dart_sass_sass_blog/) package to convert JS traces to Dart-like traces.
It would be awesome if I can install sass via `winget install sass`
- [x] Implementation (Language) - [x] Implementation (JS API) - [ ] Breaking changes See https://github.com/sass/sass/issues/2831
I'm getting the following error when trying to compile my project after upgrading some npm packages (getting latest and mainly upgrading carbon). I'v been stuck on this and can't seem...
Currently the selector AST used by Sass and exposed by `sass_api` doesn't expose source span information. This information is tricky to determine, because selectors are interpolated in the source file....