sass 1.94.2 → 1.95.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 +27 -0
- package/package.json +1 -1
- package/sass.dart.js +4497 -1996
- package/types/deprecations.d.ts +8 -1
package/types/deprecations.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
export interface Deprecations {
|
|
8
8
|
// START AUTOGENERATED LIST
|
|
9
|
-
// Checksum:
|
|
9
|
+
// Checksum: 81dd840fe9e83020c1fd88a91e46f49b16190c76
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Deprecation for passing a string directly to meta.call().
|
|
@@ -193,6 +193,13 @@ export interface Deprecations {
|
|
|
193
193
|
*/
|
|
194
194
|
'with-private': Deprecation<'with-private'>;
|
|
195
195
|
|
|
196
|
+
/**
|
|
197
|
+
* Deprecation for the Sass if($condition, $if-true, $if-false) function.
|
|
198
|
+
*
|
|
199
|
+
* This deprecation became active in Dart Sass 1.95.0.
|
|
200
|
+
*/
|
|
201
|
+
'if-function': Deprecation<'if-function'>;
|
|
202
|
+
|
|
196
203
|
// END AUTOGENERATED LIST
|
|
197
204
|
|
|
198
205
|
/**
|