dart-sass icon indicating copy to clipboard operation
dart-sass copied to clipboard

The reference implementation of Sass, written in Dart.

Results 149 dart-sass issues
Sort by recently updated
recently updated
newest added

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...

needs info

similar to https://github.com/sass/dart-sass/issues/9 but for: ```css background-url: url("./path/to/image.png"); ```

enhancement

The following input: ```scss div { /* one * two * three */ top: 10px; } ``` produces this output: ```css div { /* one * two * three */...

bug
cosmetic
low priority

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?

enhancement

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...

enhancement
blocked

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.

enhancement

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

enhancement
blocked

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...

needs info

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....

enhancement
AST API