You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -50,7 +50,8 @@ const converter = new TailwindExportConfig({
50
50
destination:'converted/file/destination',
51
51
format:'scss',
52
52
prefix:'tw',
53
-
flat:true
53
+
flat:true,
54
+
quotedKeys:true
54
55
})
55
56
56
57
// writeToFile returns a promise so we can chain off it
@@ -72,7 +73,8 @@ config|String,Object|true| Tailwindcss config path or config object to transform
72
73
destination|String|true| Destination to save converted file
73
74
format|String|true| The format in which to convert the file
74
75
prefix|String|false| An optional prefix for each variable name
75
-
flat|Boolean|false| Optionally transforms the variables from nested maps to flat level variables. Less does not support nested maps so we default to flat for them always.
76
+
flat|Boolean|false| Optionally transforms the variables from nested maps to flat level variables. Less does not support nested maps so we default to flat for them always. Defaults to `false`.
77
+
quoted-keys|Boolean|false| (`quotedKeys` in the Node API) - Whether keys in maps should be quoted or not. We recommend to have this set to `true`. Defaults to `false`.
0 commit comments