Change API.
Before:
new TheSupersonicPlugin({
hooks: { .. },
drivers: {
'driver-id': {
start: document.querySelector('.start'),
...
After:
new TheSupersonicPlugin(
[
{
start: '.start',
...
},
],
{
hooks: { ... }
}
)