sass 1.41.1 → 1.43.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/LICENSE +170 -92
- package/README.md +3 -24
- package/package.json +1 -1
- package/sass.dart.js +4374 -3930
- package/sass.default.dart.js +4 -0
- package/sass.js +7 -2
package/LICENSE
CHANGED
|
@@ -124,96 +124,28 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
124
124
|
|
|
125
125
|
archive license:
|
|
126
126
|
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
130
|
-
you may not use this file except in compliance with the License.
|
|
131
|
-
You may obtain a copy of the License at
|
|
127
|
+
The MIT License
|
|
132
128
|
|
|
133
|
-
|
|
129
|
+
Copyright (c) 2013-2021 Brendan Duncan.
|
|
130
|
+
All rights reserved.
|
|
134
131
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
Some code has been derived from the following projects:
|
|
143
|
-
|
|
144
|
-
zlib/inflate:
|
|
145
|
-
JavaScript Zlib Library, https://github.com/imaya/zlib.js
|
|
146
|
-
The MIT License
|
|
147
|
-
Copyright (c) 2012 imaya
|
|
148
|
-
|
|
149
|
-
zlib/deflate:
|
|
150
|
-
Java JZLib Library, http://www.jcraft.com/jzlib/
|
|
151
|
-
Copyright (c) 2000-2011 ymnk, JCraft,Inc. All rights reserved.
|
|
152
|
-
|
|
153
|
-
Redistribution and use in source and binary forms, with or without
|
|
154
|
-
modification, are permitted provided that the following conditions are met:
|
|
155
|
-
|
|
156
|
-
1. Redistributions of source code must retain the above copyright notice,
|
|
157
|
-
this list of conditions and the following disclaimer.
|
|
158
|
-
|
|
159
|
-
2. Redistributions in binary form must reproduce the above copyright
|
|
160
|
-
notice, this list of conditions and the following disclaimer in
|
|
161
|
-
the documentation and/or other materials provided with the distribution.
|
|
162
|
-
|
|
163
|
-
3. The names of the authors may not be used to endorse or promote products
|
|
164
|
-
derived from this software without specific prior written permission.
|
|
165
|
-
|
|
166
|
-
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
|
|
167
|
-
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
168
|
-
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
|
|
169
|
-
INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
170
|
-
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
171
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
|
|
172
|
-
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
173
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
174
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
|
175
|
-
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
176
|
-
|
|
177
|
-
bzip2:
|
|
178
|
-
This program, "bzip2", the associated library "libbzip2", and all
|
|
179
|
-
documentation, are copyright (C) 1996-2010 Julian R Seward. All
|
|
180
|
-
rights reserved.
|
|
181
|
-
|
|
182
|
-
Redistribution and use in source and binary forms, with or without
|
|
183
|
-
modification, are permitted provided that the following conditions
|
|
184
|
-
are met:
|
|
185
|
-
|
|
186
|
-
1. Redistributions of source code must retain the above copyright
|
|
187
|
-
notice, this list of conditions and the following disclaimer.
|
|
188
|
-
|
|
189
|
-
2. The origin of this software must not be misrepresented; you must
|
|
190
|
-
not claim that you wrote the original software. If you use this
|
|
191
|
-
software in a product, an acknowledgment in the product
|
|
192
|
-
documentation would be appreciated but is not required.
|
|
193
|
-
|
|
194
|
-
3. Altered source versions must be plainly marked as such, and must
|
|
195
|
-
not be misrepresented as being the original software.
|
|
196
|
-
|
|
197
|
-
4. The name of the author may not be used to endorse or promote
|
|
198
|
-
products derived from this software without specific prior written
|
|
199
|
-
permission.
|
|
200
|
-
|
|
201
|
-
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
|
|
202
|
-
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
203
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
204
|
-
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
205
|
-
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
206
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
|
|
207
|
-
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
208
|
-
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
209
|
-
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
210
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
211
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
212
|
-
|
|
213
|
-
Julian Seward, jseward@bzip.org
|
|
214
|
-
bzip2/libbzip2 version 1.0.6 of 6 September 2010
|
|
132
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
133
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
134
|
+
in the Software without restriction, including without limitation the rights
|
|
135
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
136
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
137
|
+
furnished to do so, subject to the following conditions:
|
|
215
138
|
|
|
139
|
+
The above copyright notice and this permission notice shall be included in
|
|
140
|
+
all copies or substantial portions of the Software.
|
|
216
141
|
|
|
142
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
143
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
144
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
145
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
146
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
147
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
148
|
+
THE SOFTWARE.
|
|
217
149
|
|
|
218
150
|
--------------------------------------------------------------------------------
|
|
219
151
|
|
|
@@ -250,7 +182,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
250
182
|
|
|
251
183
|
--------------------------------------------------------------------------------
|
|
252
184
|
|
|
253
|
-
async, cli_util and shelf_static license:
|
|
185
|
+
async, cli_util, mime and shelf_static license:
|
|
254
186
|
|
|
255
187
|
Copyright 2015, the Dart project authors.
|
|
256
188
|
|
|
@@ -315,8 +247,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
315
247
|
|
|
316
248
|
--------------------------------------------------------------------------------
|
|
317
249
|
|
|
318
|
-
charcode,
|
|
319
|
-
source_span, stack_trace, string_scanner
|
|
250
|
+
charcode, http_parser, oauth2, path, pool, shelf_web_socket, source_maps,
|
|
251
|
+
source_span, stack_trace, string_scanner and yaml license:
|
|
320
252
|
|
|
321
253
|
Copyright 2014, the Dart project authors. All rights reserved.
|
|
322
254
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -617,7 +549,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
617
549
|
|
|
618
550
|
--------------------------------------------------------------------------------
|
|
619
551
|
|
|
620
|
-
collection,
|
|
552
|
+
collection, source_map_stack_trace, stream_channel and typed_data license:
|
|
621
553
|
|
|
622
554
|
Copyright 2015, the Dart project authors. All rights reserved.
|
|
623
555
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -889,7 +821,7 @@ coverage and quiver license:
|
|
|
889
821
|
|
|
890
822
|
--------------------------------------------------------------------------------
|
|
891
823
|
|
|
892
|
-
dart_style, http, matcher, pub_semver, shelf and
|
|
824
|
+
dart_style, glob, http, matcher, pub_semver, shelf, test and watcher license:
|
|
893
825
|
|
|
894
826
|
Copyright 2014, the Dart project authors.
|
|
895
827
|
|
|
@@ -953,6 +885,32 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
953
885
|
|
|
954
886
|
--------------------------------------------------------------------------------
|
|
955
887
|
|
|
888
|
+
freezed_annotation license:
|
|
889
|
+
|
|
890
|
+
MIT License
|
|
891
|
+
|
|
892
|
+
Copyright (c) 2020 Remi Rousselet
|
|
893
|
+
|
|
894
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
895
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
896
|
+
in the Software without restriction, including without limitation the rights
|
|
897
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
898
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
899
|
+
furnished to do so, subject to the following conditions:
|
|
900
|
+
|
|
901
|
+
The above copyright notice and this permission notice shall be included in all
|
|
902
|
+
copies or substantial portions of the Software.
|
|
903
|
+
|
|
904
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
905
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
906
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
907
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
908
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
909
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
910
|
+
SOFTWARE.
|
|
911
|
+
|
|
912
|
+
--------------------------------------------------------------------------------
|
|
913
|
+
|
|
956
914
|
frontend_server_client license:
|
|
957
915
|
|
|
958
916
|
Copyright 2020, the Dart project authors.
|
|
@@ -1118,7 +1076,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
1118
1076
|
|
|
1119
1077
|
--------------------------------------------------------------------------------
|
|
1120
1078
|
|
|
1121
|
-
json_annotation,
|
|
1079
|
+
json_annotation, stream_transform and term_glyph license:
|
|
1122
1080
|
|
|
1123
1081
|
Copyright 2017, the Dart project authors. All rights reserved.
|
|
1124
1082
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -1148,6 +1106,39 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
1148
1106
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1149
1107
|
|
|
1150
1108
|
|
|
1109
|
+
--------------------------------------------------------------------------------
|
|
1110
|
+
|
|
1111
|
+
lints license:
|
|
1112
|
+
|
|
1113
|
+
Copyright 2021, the Dart project authors.
|
|
1114
|
+
|
|
1115
|
+
Redistribution and use in source and binary forms, with or without
|
|
1116
|
+
modification, are permitted provided that the following conditions are
|
|
1117
|
+
met:
|
|
1118
|
+
|
|
1119
|
+
* Redistributions of source code must retain the above copyright
|
|
1120
|
+
notice, this list of conditions and the following disclaimer.
|
|
1121
|
+
* Redistributions in binary form must reproduce the above
|
|
1122
|
+
copyright notice, this list of conditions and the following
|
|
1123
|
+
disclaimer in the documentation and/or other materials provided
|
|
1124
|
+
with the distribution.
|
|
1125
|
+
* Neither the name of Google LLC nor the names of its
|
|
1126
|
+
contributors may be used to endorse or promote products derived
|
|
1127
|
+
from this software without specific prior written permission.
|
|
1128
|
+
|
|
1129
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1130
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1131
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1132
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1133
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1134
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1135
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1136
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1137
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1138
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1139
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1140
|
+
|
|
1141
|
+
|
|
1151
1142
|
--------------------------------------------------------------------------------
|
|
1152
1143
|
|
|
1153
1144
|
meta license:
|
|
@@ -1326,6 +1317,63 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
1326
1317
|
THE SOFTWARE.
|
|
1327
1318
|
|
|
1328
1319
|
|
|
1320
|
+
--------------------------------------------------------------------------------
|
|
1321
|
+
|
|
1322
|
+
pub_api_client license:
|
|
1323
|
+
|
|
1324
|
+
MIT License
|
|
1325
|
+
|
|
1326
|
+
Copyright (c) 2020 Leo Farias
|
|
1327
|
+
|
|
1328
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1329
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1330
|
+
in the Software without restriction, including without limitation the rights
|
|
1331
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1332
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1333
|
+
furnished to do so, subject to the following conditions:
|
|
1334
|
+
|
|
1335
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1336
|
+
copies or substantial portions of the Software.
|
|
1337
|
+
|
|
1338
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1339
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1340
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1341
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1342
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1343
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1344
|
+
SOFTWARE.
|
|
1345
|
+
|
|
1346
|
+
|
|
1347
|
+
--------------------------------------------------------------------------------
|
|
1348
|
+
|
|
1349
|
+
pubspec license:
|
|
1350
|
+
|
|
1351
|
+
Copyright (c) 2015, Anders Holmgren.
|
|
1352
|
+
All rights reserved.
|
|
1353
|
+
|
|
1354
|
+
Redistribution and use in source and binary forms, with or without
|
|
1355
|
+
modification, are permitted provided that the following conditions are met:
|
|
1356
|
+
* Redistributions of source code must retain the above copyright
|
|
1357
|
+
notice, this list of conditions and the following disclaimer.
|
|
1358
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
1359
|
+
notice, this list of conditions and the following disclaimer in the
|
|
1360
|
+
documentation and/or other materials provided with the distribution.
|
|
1361
|
+
* Neither the name of the <organization> nor the
|
|
1362
|
+
names of its contributors may be used to endorse or promote products
|
|
1363
|
+
derived from this software without specific prior written permission.
|
|
1364
|
+
|
|
1365
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
1366
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
1367
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
1368
|
+
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
|
1369
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
1370
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
1371
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
1372
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1373
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1374
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1375
|
+
|
|
1376
|
+
|
|
1329
1377
|
--------------------------------------------------------------------------------
|
|
1330
1378
|
|
|
1331
1379
|
pubspec_parse, test_api and test_core license:
|
|
@@ -1419,6 +1467,36 @@ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
1419
1467
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1420
1468
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1421
1469
|
|
|
1470
|
+
--------------------------------------------------------------------------------
|
|
1471
|
+
|
|
1472
|
+
uri license:
|
|
1473
|
+
|
|
1474
|
+
Copyright 2013, the Dart project authors. All rights reserved.
|
|
1475
|
+
Redistribution and use in source and binary forms, with or without
|
|
1476
|
+
modification, are permitted provided that the following conditions are
|
|
1477
|
+
met:
|
|
1478
|
+
* Redistributions of source code must retain the above copyright
|
|
1479
|
+
notice, this list of conditions and the following disclaimer.
|
|
1480
|
+
* Redistributions in binary form must reproduce the above
|
|
1481
|
+
copyright notice, this list of conditions and the following
|
|
1482
|
+
disclaimer in the documentation and/or other materials provided
|
|
1483
|
+
with the distribution.
|
|
1484
|
+
* Neither the name of Google Inc. nor the names of its
|
|
1485
|
+
contributors may be used to endorse or promote products derived
|
|
1486
|
+
from this software without specific prior written permission.
|
|
1487
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1488
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1489
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1490
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1491
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1492
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1493
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1494
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1495
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1496
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1497
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1498
|
+
|
|
1499
|
+
|
|
1422
1500
|
--------------------------------------------------------------------------------
|
|
1423
1501
|
|
|
1424
1502
|
web_socket_channel license:
|
package/README.md
CHANGED
|
@@ -60,30 +60,9 @@ website][js api] for full API documentation!
|
|
|
60
60
|
[Node Sass]: https://github.com/sass/node-sass
|
|
61
61
|
[js api]: https://sass-lang.com/documentation/js-api
|
|
62
62
|
|
|
63
|
-
Note however that
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
asynchronous importers from the synchronous code path. To enable this, pass the
|
|
67
|
-
`Fiber` class to the `fiber` option:
|
|
68
|
-
|
|
69
|
-
[fibers]: https://www.npmjs.com/package/fibers
|
|
70
|
-
|
|
71
|
-
```js
|
|
72
|
-
var sass = require("sass");
|
|
73
|
-
var Fiber = require("fibers");
|
|
74
|
-
|
|
75
|
-
sass.render({
|
|
76
|
-
file: "input.scss",
|
|
77
|
-
importer: function(url, prev, done) {
|
|
78
|
-
// ...
|
|
79
|
-
},
|
|
80
|
-
fiber: Fiber
|
|
81
|
-
}, function(err, result) {
|
|
82
|
-
// ...
|
|
83
|
-
});
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
Both `render()` and `renderSync()` support the following options:
|
|
63
|
+
Note however that **`renderSync()` is more than twice as fast as `render()`**
|
|
64
|
+
due to the overhead of asynchronous callbacks. Both `render()` and
|
|
65
|
+
`renderSync()` support the following options:
|
|
87
66
|
|
|
88
67
|
* [`data`](https://github.com/sass/node-sass#data)
|
|
89
68
|
* [`file`](https://github.com/sass/node-sass#file)
|
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.43.3","bin":{"sass":"sass.js"},"main":"sass.default.dart.js","exports":{"default":"./sass.default.dart.js"}}
|