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
I just realised that preprocess functions are being drawn directly from options:
options: {
style: (...)=>{...}}
For consistency with other integrations, that should be like this instead:
options: {
preprocess: {
style: (...)=>{...}}}
We'll have to intercept options.style, options.script and options.markup and a) turn them into options.preprocess and b) print a big deprecation warning.
The text was updated successfully, but these errors were encountered:
I just realised that preprocess functions are being drawn directly from
options
:For consistency with other integrations, that should be like this instead:
We'll have to intercept
options.style
,options.script
andoptions.markup
and a) turn them intooptions.preprocess
and b) print a big deprecation warning.The text was updated successfully, but these errors were encountered: