sass 1.62.0 → 1.63.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 +35 -35
- package/README.md +2 -2
- package/package.json +1 -1
- package/sass.dart.js +3103 -2489
- package/sass.default.cjs +8 -0
- package/sass.default.js +31 -7
- package/sass.js +6 -2
- package/sass.node.cjs +11 -0
- package/sass.node.js +35 -0
- package/types/compile.d.ts +25 -24
- package/types/exception.d.ts +7 -7
- package/types/importer.d.ts +58 -54
- package/types/legacy/exception.d.ts +13 -12
- package/types/legacy/function.d.ts +59 -58
- package/types/legacy/importer.d.ts +31 -30
- package/types/legacy/options.d.ts +65 -65
- package/types/legacy/plugin_this.d.ts +18 -17
- package/types/legacy/render.d.ts +21 -21
- package/types/logger/index.d.ts +4 -4
- package/types/logger/source_location.d.ts +2 -2
- package/types/logger/source_span.d.ts +3 -3
- package/types/options.d.ts +74 -70
- package/types/util/promise_or.d.ts +4 -4
- package/types/value/argument_list.d.ts +6 -6
- package/types/value/function.d.ts +1 -1
- package/types/value/index.d.ts +13 -13
- package/types/value/list.d.ts +1 -1
- package/types/value/map.d.ts +3 -3
- package/types/value/number.d.ts +49 -49
- package/types/value/string.d.ts +1 -1
package/LICENSE
CHANGED
|
@@ -89,7 +89,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
89
89
|
|
|
90
90
|
--------------------------------------------------------------------------------
|
|
91
91
|
|
|
92
|
-
analyzer license:
|
|
92
|
+
analyzer, protobuf and protoc_plugin license:
|
|
93
93
|
|
|
94
94
|
Copyright 2013, the Dart project authors.
|
|
95
95
|
|
|
@@ -646,6 +646,40 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
646
646
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
647
647
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
648
648
|
|
|
649
|
+
--------------------------------------------------------------------------------
|
|
650
|
+
|
|
651
|
+
fixnum, http_multi_server, oauth2, shelf, shelf_web_socket, source_maps and
|
|
652
|
+
stack_trace license:
|
|
653
|
+
|
|
654
|
+
Copyright 2014, the Dart project authors.
|
|
655
|
+
|
|
656
|
+
Redistribution and use in source and binary forms, with or without
|
|
657
|
+
modification, are permitted provided that the following conditions are
|
|
658
|
+
met:
|
|
659
|
+
|
|
660
|
+
* Redistributions of source code must retain the above copyright
|
|
661
|
+
notice, this list of conditions and the following disclaimer.
|
|
662
|
+
* Redistributions in binary form must reproduce the above
|
|
663
|
+
copyright notice, this list of conditions and the following
|
|
664
|
+
disclaimer in the documentation and/or other materials provided
|
|
665
|
+
with the distribution.
|
|
666
|
+
* Neither the name of Google LLC nor the names of its
|
|
667
|
+
contributors may be used to endorse or promote products derived
|
|
668
|
+
from this software without specific prior written permission.
|
|
669
|
+
|
|
670
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
671
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
672
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
673
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
674
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
675
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
676
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
677
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
678
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
679
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
680
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
681
|
+
|
|
682
|
+
|
|
649
683
|
--------------------------------------------------------------------------------
|
|
650
684
|
|
|
651
685
|
frontend_server_client license:
|
|
@@ -742,40 +776,6 @@ The above copyright notice and this permission notice shall be included in all c
|
|
|
742
776
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
743
777
|
|
|
744
778
|
|
|
745
|
-
--------------------------------------------------------------------------------
|
|
746
|
-
|
|
747
|
-
http_multi_server, oauth2, shelf, shelf_web_socket, source_maps and stack_trace
|
|
748
|
-
license:
|
|
749
|
-
|
|
750
|
-
Copyright 2014, the Dart project authors.
|
|
751
|
-
|
|
752
|
-
Redistribution and use in source and binary forms, with or without
|
|
753
|
-
modification, are permitted provided that the following conditions are
|
|
754
|
-
met:
|
|
755
|
-
|
|
756
|
-
* Redistributions of source code must retain the above copyright
|
|
757
|
-
notice, this list of conditions and the following disclaimer.
|
|
758
|
-
* Redistributions in binary form must reproduce the above
|
|
759
|
-
copyright notice, this list of conditions and the following
|
|
760
|
-
disclaimer in the documentation and/or other materials provided
|
|
761
|
-
with the distribution.
|
|
762
|
-
* Neither the name of Google LLC nor the names of its
|
|
763
|
-
contributors may be used to endorse or promote products derived
|
|
764
|
-
from this software without specific prior written permission.
|
|
765
|
-
|
|
766
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
767
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
768
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
769
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
770
|
-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
771
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
772
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
773
|
-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
774
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
775
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
776
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
777
|
-
|
|
778
|
-
|
|
779
779
|
--------------------------------------------------------------------------------
|
|
780
780
|
|
|
781
781
|
io, stream_transform and term_glyph license:
|
package/README.md
CHANGED
|
@@ -60,8 +60,8 @@ Dart Sass also supports an older JavaScript API that's fully compatible with
|
|
|
60
60
|
and will be removed in Dart Sass 2.0.0, so it should be avoided in new projects.
|
|
61
61
|
|
|
62
62
|
[Node Sass]: https://github.com/sass/node-sass
|
|
63
|
-
[`render()`]: https://sass-lang.com/documentation/js-api/
|
|
64
|
-
[`renderSync()`]: https://sass-lang.com/documentation/js-api/
|
|
63
|
+
[`render()`]: https://sass-lang.com/documentation/js-api/functions/render
|
|
64
|
+
[`renderSync()`]: https://sass-lang.com/documentation/js-api/functions/renderSync
|
|
65
65
|
|
|
66
66
|
Sass's support for the legacy JavaScript API has the following limitations:
|
|
67
67
|
|
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":">=14.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","exports":{"types":"./types/index.d.ts","default":"./sass.default.js"},"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":">=14.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","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.cjs","default":"./sass.node.js"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.63.0","bin":{"sass":"sass.js"},"main":"sass.node.cjs"}
|