Releases: Elderjs/elderjs
Releases · Elderjs/elderjs
v1.7.5
Fixes small bugs encountered when trying to get Elder.js working with Typescript seamlessly.
v1.7.4
Fix circular JSON on data and allRequest routes.
v1.7.3
Fix bug where allRequests.json
would not be honored if there was a server.prefix
defined.
v1.7.2
Add in experimental server.allRequests
to create an allRequests
route.
v1.7.0
- Add new experimental
dataRoutes
to the config. This allows for requesting the data object from Elder.js routes. If your route is /foo/
you can go to /foo/data.json
to get the data object.
- Add
perf
to shortcodes
- bump dependencies
v1.6.14
Fix #245 and add test coverage
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>
v1.6.12
Had a breaking bug introduced on edge cases when using perf
and ssr
.
v1.6.11
Remove stray console logs that we removed but didn't make it into the last release.