sass 1.89.2 → 1.97.2
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 +31 -4
- package/package.json +1 -1
- package/sass.dart.js +12218 -8036
- package/types/deprecations.d.ts +25 -1
- package/types/value/color.d.ts +1 -0
package/LICENSE
CHANGED
|
@@ -614,8 +614,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
614
614
|
|
|
615
615
|
--------------------------------------------------------------------------------
|
|
616
616
|
|
|
617
|
-
coverage, dartdoc, glob, http, http_parser, matcher, path, pool,
|
|
618
|
-
source_span, string_scanner, test and watcher license:
|
|
617
|
+
coverage, dart_style, dartdoc, glob, http, http_parser, matcher, path, pool,
|
|
618
|
+
pub_semver, source_span, string_scanner, test and watcher license:
|
|
619
619
|
|
|
620
620
|
Copyright 2014, the Dart project authors.
|
|
621
621
|
|
|
@@ -1186,7 +1186,7 @@ petitparser license:
|
|
|
1186
1186
|
|
|
1187
1187
|
The MIT License
|
|
1188
1188
|
|
|
1189
|
-
Copyright (c) 2006-
|
|
1189
|
+
Copyright (c) 2006-2024 Lukas Renggli.
|
|
1190
1190
|
All rights reserved.
|
|
1191
1191
|
|
|
1192
1192
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
@@ -1208,6 +1208,33 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
1208
1208
|
THE SOFTWARE.
|
|
1209
1209
|
|
|
1210
1210
|
|
|
1211
|
+
--------------------------------------------------------------------------------
|
|
1212
|
+
|
|
1213
|
+
posix license:
|
|
1214
|
+
|
|
1215
|
+
MIT License
|
|
1216
|
+
|
|
1217
|
+
Copyright (c) 2020 Brett Sutton
|
|
1218
|
+
|
|
1219
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1220
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
1221
|
+
in the Software without restriction, including without limitation the rights
|
|
1222
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1223
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
1224
|
+
furnished to do so, subject to the following conditions:
|
|
1225
|
+
|
|
1226
|
+
The above copyright notice and this permission notice shall be included in all
|
|
1227
|
+
copies or substantial portions of the Software.
|
|
1228
|
+
|
|
1229
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1230
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1231
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1232
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1233
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1234
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
1235
|
+
SOFTWARE.
|
|
1236
|
+
|
|
1237
|
+
|
|
1211
1238
|
--------------------------------------------------------------------------------
|
|
1212
1239
|
|
|
1213
1240
|
pub_api_client license:
|
|
@@ -1645,7 +1672,7 @@ xml license:
|
|
|
1645
1672
|
|
|
1646
1673
|
The MIT License
|
|
1647
1674
|
|
|
1648
|
-
Copyright (c) 2006-
|
|
1675
|
+
Copyright (c) 2006-2025 Lukas Renggli.
|
|
1649
1676
|
All rights reserved.
|
|
1650
1677
|
|
|
1651
1678
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
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":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","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":"^4.0.0","immutable":"^5.0.2","source-map-js":">=0.6.2 <2.0.0"},"optionalDependencies":{"@parcel/watcher":"^2.4.1"},"keywords":["style","scss","sass","preprocessor","css"],"types":"types/index.d.ts","exports":{"types":"./types/index.d.ts","node":{"require":"./sass.node.js","default":"./sass.node.mjs"},"default":{"require":"./sass.default.cjs","default":"./sass.default.js"}},"version":"1.97.2","bin":{"sass":"sass.js"},"main":"sass.node.js"}
|