sass 1.98.0 → 1.99.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/package.json +1 -1
- package/sass.dart.js +2005 -1567
- 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: 916d5fa5139e08988de6e29f7d8f7fab5e973b31
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
12
|
* Deprecation for passing a string directly to meta.call().
|
|
@@ -200,6 +200,13 @@ export interface Deprecations {
|
|
|
200
200
|
*/
|
|
201
201
|
'if-function': Deprecation<'if-function'>;
|
|
202
202
|
|
|
203
|
+
/**
|
|
204
|
+
* Deprecation for uppercase reserved function names.
|
|
205
|
+
*
|
|
206
|
+
* This deprecation became active in Dart Sass 1.98.0.
|
|
207
|
+
*/
|
|
208
|
+
'function-name': Deprecation<'function-name'>;
|
|
209
|
+
|
|
203
210
|
// END AUTOGENERATED LIST
|
|
204
211
|
|
|
205
212
|
/**
|