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.
- package/package.json +1 -1
- package/sass.dart.js +2213 -1687
- package/types/options.d.ts +7 -5
package/types/options.d.ts
CHANGED
|
@@ -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
|
|
337
|
-
*
|
|
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.
|
|
358
|
-
*
|
|
359
|
-
*
|
|
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
|
*/
|