sass 1.32.13 → 1.35.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 +36 -3
- package/package.json +1 -1
- package/sass.dart.js +4973 -4214
package/LICENSE
CHANGED
|
@@ -282,7 +282,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
282
282
|
|
|
283
283
|
--------------------------------------------------------------------------------
|
|
284
284
|
|
|
285
|
-
boolean_selector,
|
|
285
|
+
boolean_selector, shelf_packages_handler and test_descriptor license:
|
|
286
286
|
|
|
287
287
|
Copyright 2016, the Dart project authors. All rights reserved.
|
|
288
288
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -617,7 +617,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
617
617
|
--------------------------------------------------------------------------------
|
|
618
618
|
|
|
619
619
|
cli_util, collection, convert, mime, shelf_static, source_map_stack_trace,
|
|
620
|
-
stream_channel
|
|
620
|
+
stream_channel and typed_data license:
|
|
621
621
|
|
|
622
622
|
Copyright 2015, the Dart project authors. All rights reserved.
|
|
623
623
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -856,7 +856,7 @@ coverage and quiver license:
|
|
|
856
856
|
|
|
857
857
|
--------------------------------------------------------------------------------
|
|
858
858
|
|
|
859
|
-
crypto license:
|
|
859
|
+
crypto and vm_service license:
|
|
860
860
|
|
|
861
861
|
Copyright 2015, the Dart project authors.
|
|
862
862
|
|
|
@@ -1148,6 +1148,39 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
1148
1148
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1149
1149
|
|
|
1150
1150
|
|
|
1151
|
+
--------------------------------------------------------------------------------
|
|
1152
|
+
|
|
1153
|
+
meta license:
|
|
1154
|
+
|
|
1155
|
+
Copyright 2016, the Dart project authors.
|
|
1156
|
+
|
|
1157
|
+
Redistribution and use in source and binary forms, with or without
|
|
1158
|
+
modification, are permitted provided that the following conditions are
|
|
1159
|
+
met:
|
|
1160
|
+
|
|
1161
|
+
* Redistributions of source code must retain the above copyright
|
|
1162
|
+
notice, this list of conditions and the following disclaimer.
|
|
1163
|
+
* Redistributions in binary form must reproduce the above
|
|
1164
|
+
copyright notice, this list of conditions and the following
|
|
1165
|
+
disclaimer in the documentation and/or other materials provided
|
|
1166
|
+
with the distribution.
|
|
1167
|
+
* Neither the name of Google LLC nor the names of its
|
|
1168
|
+
contributors may be used to endorse or promote products derived
|
|
1169
|
+
from this software without specific prior written permission.
|
|
1170
|
+
|
|
1171
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1172
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1173
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1174
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1175
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1176
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1177
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1178
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1179
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1180
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1181
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1182
|
+
|
|
1183
|
+
|
|
1151
1184
|
--------------------------------------------------------------------------------
|
|
1152
1185
|
|
|
1153
1186
|
node_interop license:
|
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.35.0","bin":{"sass":"sass.js"},"main":"sass.dart.js"}
|