sass 1.53.0 → 1.54.2
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 +6200 -4761
- package/types/options.d.ts +14 -0
package/types/options.d.ts
CHANGED
|
@@ -108,6 +108,20 @@ export interface Options<sync extends 'sync' | 'async'> {
|
|
|
108
108
|
*/
|
|
109
109
|
alertColor?: boolean;
|
|
110
110
|
|
|
111
|
+
/**
|
|
112
|
+
* If `true`, the compiler may prepend `@charset "UTF-8";` or U+FEFF
|
|
113
|
+
* (byte-order marker) if it outputs non-ASCII CSS.
|
|
114
|
+
*
|
|
115
|
+
* If `false`, the compiler never emits these byte sequences. This is ideal
|
|
116
|
+
* when concatenating or embedding in HTML `<style>` tags. (The output will
|
|
117
|
+
* still be UTF-8.)
|
|
118
|
+
*
|
|
119
|
+
* @defaultValue `true`
|
|
120
|
+
* @category Output
|
|
121
|
+
* @compatibility dart: "1.54.0", node: false
|
|
122
|
+
*/
|
|
123
|
+
charset?: boolean;
|
|
124
|
+
|
|
111
125
|
/**
|
|
112
126
|
* Additional built-in Sass functions that are available in all stylesheets.
|
|
113
127
|
* This option takes an object whose keys are Sass function signatures like
|