sass 1.52.0 → 1.52.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -19
- package/package.json +1 -1
- package/sass.dart.js +1695 -2124
package/README.md
CHANGED
|
@@ -79,25 +79,6 @@ Sass's support for the legacy JavaScript API has the following limitations:
|
|
|
79
79
|
[`precision`]: https://github.com/sass/node-sass#precision
|
|
80
80
|
[`sourceComments`]: https://github.com/sass/node-sass#sourcecomments
|
|
81
81
|
|
|
82
|
-
### From Pub
|
|
83
|
-
|
|
84
|
-
If you're a Dart user, you can install Dart Sass globally using `pub global
|
|
85
|
-
activate sass`, which will provide a `sass` executable. You can also add it to
|
|
86
|
-
your pubspec and use it as a library. We strongly recommend importing it with
|
|
87
|
-
the prefix `sass`:
|
|
88
|
-
|
|
89
|
-
```dart
|
|
90
|
-
import 'package:sass/sass.dart' as sass;
|
|
91
|
-
|
|
92
|
-
void main(List<String> args) {
|
|
93
|
-
print(sass.compile(args.first));
|
|
94
|
-
}
|
|
95
|
-
```
|
|
96
|
-
|
|
97
|
-
See [the Dart API docs][api] for details.
|
|
98
|
-
|
|
99
|
-
[api]: https://www.dartdocs.org/documentation/sass/latest/sass/sass-library.html
|
|
100
|
-
|
|
101
82
|
## See Also
|
|
102
83
|
|
|
103
84
|
* [Dart Sass][], from which this package is compiled, can be used either as a
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":"https://github.com/sass/dart-sass/issues","homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"https://github.com/sass/dart-sass"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.52.
|
|
1
|
+
{"name":"sass","description":"A pure JavaScript implementation of Sass.","license":"MIT","bugs":"https://github.com/sass/dart-sass/issues","homepage":"https://github.com/sass/dart-sass","repository":{"type":"git","url":"https://github.com/sass/dart-sass"},"author":{"name":"Natalie Weizenbaum","email":"nweiz@google.com","url":"https://github.com/nex3"},"engines":{"node":">=12.0.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0","immutable":"^4.0.0","source-map-js":">=0.6.2 <2.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","version":"1.52.3","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"}}
|