sass 1.38.2 → 1.40.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 -2
- package/README.md +2 -0
- package/package.json +1 -1
- package/sass.dart.js +29779 -28376
package/LICENSE
CHANGED
|
@@ -37,9 +37,10 @@ met:
|
|
|
37
37
|
copyright notice, this list of conditions and the following
|
|
38
38
|
disclaimer in the documentation and/or other materials provided
|
|
39
39
|
with the distribution.
|
|
40
|
-
* Neither the name of Google
|
|
40
|
+
* Neither the name of Google LLC nor the names of its
|
|
41
41
|
contributors may be used to endorse or promote products derived
|
|
42
42
|
from this software without specific prior written permission.
|
|
43
|
+
|
|
43
44
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
44
45
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
45
46
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
@@ -347,7 +348,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
347
348
|
|
|
348
349
|
--------------------------------------------------------------------------------
|
|
349
350
|
|
|
350
|
-
checked_yaml
|
|
351
|
+
checked_yaml license:
|
|
351
352
|
|
|
352
353
|
Copyright 2019, the Dart project authors. All rights reserved.
|
|
353
354
|
Redistribution and use in source and binary forms, with or without
|
|
@@ -1296,6 +1297,39 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
1296
1297
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1297
1298
|
|
|
1298
1299
|
|
|
1300
|
+
--------------------------------------------------------------------------------
|
|
1301
|
+
|
|
1302
|
+
package_config license:
|
|
1303
|
+
|
|
1304
|
+
Copyright 2019, the Dart project authors.
|
|
1305
|
+
|
|
1306
|
+
Redistribution and use in source and binary forms, with or without
|
|
1307
|
+
modification, are permitted provided that the following conditions are
|
|
1308
|
+
met:
|
|
1309
|
+
|
|
1310
|
+
* Redistributions of source code must retain the above copyright
|
|
1311
|
+
notice, this list of conditions and the following disclaimer.
|
|
1312
|
+
* Redistributions in binary form must reproduce the above
|
|
1313
|
+
copyright notice, this list of conditions and the following
|
|
1314
|
+
disclaimer in the documentation and/or other materials provided
|
|
1315
|
+
with the distribution.
|
|
1316
|
+
* Neither the name of Google LLC nor the names of its
|
|
1317
|
+
contributors may be used to endorse or promote products derived
|
|
1318
|
+
from this software without specific prior written permission.
|
|
1319
|
+
|
|
1320
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
1321
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
1322
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
1323
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
1324
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
1325
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
1326
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
1327
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
1328
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1329
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
1330
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1331
|
+
|
|
1332
|
+
|
|
1299
1333
|
--------------------------------------------------------------------------------
|
|
1300
1334
|
|
|
1301
1335
|
petitparser and xml license:
|
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.40.0","bin":{"sass":"sass.js"},"main":"sass.dart.js"}
|