sass 1.26.3 → 1.26.5
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 +30 -3
- package/package.json +1 -1
- package/sass.dart.js +805 -424
package/LICENSE
CHANGED
|
@@ -1014,11 +1014,11 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
1014
1014
|
|
|
1015
1015
|
--------------------------------------------------------------------------------
|
|
1016
1016
|
|
|
1017
|
-
petitparser
|
|
1017
|
+
petitparser license:
|
|
1018
1018
|
|
|
1019
1019
|
The MIT License
|
|
1020
1020
|
|
|
1021
|
-
Copyright (c) 2006-
|
|
1021
|
+
Copyright (c) 2006-2020 Lukas Renggli.
|
|
1022
1022
|
All rights reserved.
|
|
1023
1023
|
|
|
1024
1024
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
@@ -1097,4 +1097,31 @@ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
1097
1097
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
1098
1098
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
1099
1099
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
1100
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1100
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
1101
|
+
|
|
1102
|
+
--------------------------------------------------------------------------------
|
|
1103
|
+
|
|
1104
|
+
xml license:
|
|
1105
|
+
|
|
1106
|
+
The MIT License
|
|
1107
|
+
|
|
1108
|
+
Copyright (c) 2006-2019 Lukas Renggli.
|
|
1109
|
+
All rights reserved.
|
|
1110
|
+
|
|
1111
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1112
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1113
|
+
in the Software without restriction, including without limitation the rights
|
|
1114
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1115
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1116
|
+
furnished to do so, subject to the following conditions:
|
|
1117
|
+
|
|
1118
|
+
The above copyright notice and this permission notice shall be included in
|
|
1119
|
+
all copies or substantial portions of the Software.
|
|
1120
|
+
|
|
1121
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1122
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1123
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1124
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1125
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1126
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1127
|
+
THE SOFTWARE.
|
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":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.
|
|
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":">=2.0.0 <4.0.0"},"keywords":["style","scss","sass","preprocessor","css"],"version":"1.26.5","bin":{"sass":"sass.js"},"main":"sass.dart.js"}
|