sass 1.37.5 → 1.39.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.
- package/LICENSE +2 -2
- package/README.md +2 -0
- package/package.json +1 -1
- package/sass.dart.js +1288 -1058
package/LICENSE
CHANGED
|
@@ -314,7 +314,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
314
314
|
|
|
315
315
|
--------------------------------------------------------------------------------
|
|
316
316
|
|
|
317
|
-
charcode, glob, http_parser,
|
|
317
|
+
charcode, glob, http_parser, path, pool, pub_semver, shelf_web_socket,
|
|
318
318
|
source_maps, source_span, stack_trace, string_scanner, watcher and yaml license:
|
|
319
319
|
|
|
320
320
|
Copyright 2014, the Dart project authors. All rights reserved.
|
|
@@ -888,7 +888,7 @@ coverage and quiver license:
|
|
|
888
888
|
|
|
889
889
|
--------------------------------------------------------------------------------
|
|
890
890
|
|
|
891
|
-
dart_style, http, shelf and test license:
|
|
891
|
+
dart_style, http, matcher, shelf and test license:
|
|
892
892
|
|
|
893
893
|
Copyright 2014, the Dart project authors.
|
|
894
894
|
|
package/README.md
CHANGED
|
@@ -102,6 +102,8 @@ Both `render()` and `renderSync()` support the following options:
|
|
|
102
102
|
* [`sourceMap`](https://github.com/sass/node-sass#sourcemap)
|
|
103
103
|
* Only the `"expanded"` and `"compressed"` values of
|
|
104
104
|
[`outputStyle`](https://github.com/sass/node-sass#outputstyle) are supported.
|
|
105
|
+
* `charset` (`true`, the default, will prefix non-ASCII CSS with `U+FEFF` or
|
|
106
|
+
[`@charset "UTF-8";`](https://developer.mozilla.org/en-US/docs/Web/CSS/@charset))
|
|
105
107
|
|
|
106
108
|
No support is intended for the following options:
|
|
107
109
|
|
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":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"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":">=8.9.0"},"dependencies":{"chokidar":">=3.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.39.0","bin":{"sass":"sass.js"},"main":"sass.dart.js"}
|