v1.6.13
Add component mounting events to the browser.
This will now allow functions to be run once a component has mounted that are outside of Svelte.
<script>
document.addEventListener('ejs', (e) => {
console.log('componentMount', e.detail);
});
</script>