Sync deprecations

This commit is contained in:
Jennifer Thakar 2024-07-17 16:22:32 -07:00
parent 559c01cfc4
commit 1f5b4d773d
2 changed files with 11 additions and 3 deletions

View File

@ -6,7 +6,7 @@
*/
export interface Deprecations {
// START AUTOGENERATED LIST
// Checksum: 309e4f1f008f08379b824ab6094e13df2e18e187
// Checksum: 89166027dc458357cbea646fd77fa44d9d7461cb
/**
* Deprecation for passing a string directly to meta.call().
@ -123,10 +123,17 @@ export interface Deprecations {
/**
* Deprecation for @import rules.
*
* This deprecation is not yet active, but will be soon.
* This deprecation became active in Dart Sass 1.78.0.
*/
import: Deprecation<'import'>;
/**
* Deprecation for global built-in functions that are available in sass: modules.
*
* This deprecation became active in Dart Sass 1.78.0.
*/
'global-builtin': Deprecation<'global-builtin'>;
// END AUTOGENERATED LIST
/**

View File

@ -29,7 +29,7 @@
### `Deprecations`
<!-- START AUTOGENERATED LIST -->
<!-- Checksum: 309e4f1f008f08379b824ab6094e13df2e18e187 -->
<!-- Checksum: 89166027dc458357cbea646fd77fa44d9d7461cb -->
```ts
export interface Deprecations {
'call-string': Deprecation<'call-string'>;
@ -49,6 +49,7 @@ export interface Deprecations {
'css-function-mixin': Deprecation<'css-function-mixin'>;
'mixed-decls': Deprecation<'mixed-decls'>;
import: Deprecation<'import'>;
'global-builtin': Deprecation<'global-builtin'>;
'user-authored': Deprecation<'user-authored', 'user'>;
}
```