sass 1.49.11 → 1.51.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.
@@ -333,8 +333,8 @@ export interface Options<sync extends 'sync' | 'async'> {
333
333
  * Options that can be passed to [[compileString]] or [[compileStringAsync]].
334
334
  *
335
335
  * If the [[StringOptionsWithImporter.importer]] field isn't passed, the
336
- * entrypoint file can't load files relative to itself and the [[url]] field is
337
- * optional.
336
+ * entrypoint file can load files relative to itself if a `file://` URL is
337
+ * passed to the [[url]] field.
338
338
  *
339
339
  * @typeParam sync - This lets the TypeScript checker verify that asynchronous
340
340
  * [[Importer]]s, [[FileImporter]]s, and [[CustomFunction]]s aren't passed to
@@ -354,9 +354,11 @@ export interface StringOptionsWithoutImporter<sync extends 'sync' | 'async'>
354
354
  syntax?: Syntax;
355
355
 
356
356
  /**
357
- * The canonical URL of the entrypoint stylesheet. If this isn't passed along
358
- * with [[StringOptionsWithoutImporter.importer]], it's optional and only used
359
- * for error reporting.
357
+ * The canonical URL of the entrypoint stylesheet.
358
+ *
359
+ * A relative load's URL is first resolved relative to [[url]], then resolved
360
+ * to a file on disk if it's a `file://` URL. If it can't be resolved to a
361
+ * file on disk, it's then passed to [[importers]] and [[loadPaths]].
360
362
  *
361
363
  * @category Input
362
364
  */