sass 1.52.1 → 1.53.0

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.
Files changed (4) hide show
  1. package/LICENSE +9 -9
  2. package/README.md +0 -19
  3. package/package.json +1 -1
  4. package/sass.dart.js +518 -338
package/LICENSE CHANGED
@@ -182,7 +182,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
182
182
 
183
183
  --------------------------------------------------------------------------------
184
184
 
185
- async, cli_util, collection, mime, shelf_static and typed_data license:
185
+ async, cli_util, collection, mime and typed_data license:
186
186
 
187
187
  Copyright 2015, the Dart project authors.
188
188
 
@@ -215,7 +215,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
215
215
 
216
216
  --------------------------------------------------------------------------------
217
217
 
218
- boolean_selector, shelf_packages_handler and test_descriptor license:
218
+ boolean_selector and test_descriptor license:
219
219
 
220
220
  Copyright 2016, the Dart project authors. All rights reserved.
221
221
  Redistribution and use in source and binary forms, with or without
@@ -247,7 +247,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
247
247
 
248
248
  --------------------------------------------------------------------------------
249
249
 
250
- charcode, oauth2, pool, shelf_web_socket, source_maps and stack_trace license:
250
+ charcode, oauth2, source_maps and stack_trace license:
251
251
 
252
252
  Copyright 2014, the Dart project authors. All rights reserved.
253
253
  Redistribution and use in source and binary forms, with or without
@@ -548,7 +548,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
548
548
 
549
549
  --------------------------------------------------------------------------------
550
550
 
551
- convert, crypto and vm_service license:
551
+ convert, crypto, shelf_static and vm_service license:
552
552
 
553
553
  Copyright 2015, the Dart project authors.
554
554
 
@@ -788,7 +788,7 @@ coverage and quiver license:
788
788
 
789
789
  --------------------------------------------------------------------------------
790
790
 
791
- dart_style, dartdoc, glob, http, http_parser, matcher, path, pub_semver, shelf,
791
+ dart_style, dartdoc, glob, http, http_parser, matcher, path, pool, pub_semver,
792
792
  source_span, string_scanner, test and watcher license:
793
793
 
794
794
  Copyright 2014, the Dart project authors.
@@ -975,7 +975,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
975
975
 
976
976
  --------------------------------------------------------------------------------
977
977
 
978
- http_multi_server license:
978
+ http_multi_server, shelf and shelf_web_socket license:
979
979
 
980
980
  Copyright 2014, the Dart project authors.
981
981
 
@@ -1008,7 +1008,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1008
1008
 
1009
1009
  --------------------------------------------------------------------------------
1010
1010
 
1011
- io license:
1011
+ io and term_glyph license:
1012
1012
 
1013
1013
  Copyright 2017, the Dart project authors.
1014
1014
 
@@ -1074,7 +1074,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1074
1074
 
1075
1075
  --------------------------------------------------------------------------------
1076
1076
 
1077
- json_annotation, stream_transform and term_glyph license:
1077
+ json_annotation and stream_transform license:
1078
1078
 
1079
1079
  Copyright 2017, the Dart project authors. All rights reserved.
1080
1080
  Redistribution and use in source and binary forms, with or without
@@ -1172,7 +1172,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1172
1172
 
1173
1173
  --------------------------------------------------------------------------------
1174
1174
 
1175
- meta license:
1175
+ meta and shelf_packages_handler license:
1176
1176
 
1177
1177
  Copyright 2016, the Dart project authors.
1178
1178
 
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","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"}}
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.53.0","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"}}