Skip to content

Releases: Elderjs/elderjs

v1.7.5

31 May 13:11
Compare
Choose a tag to compare

Fixes small bugs encountered when trying to get Elder.js working with Typescript seamlessly.

v1.7.4

19 May 21:19
Compare
Choose a tag to compare

Fix circular JSON on data and allRequest routes.

v1.7.3

18 May 14:36
Compare
Choose a tag to compare

Fix bug where allRequests.json would not be honored if there was a server.prefix defined.

v1.7.2

18 May 13:01
Compare
Choose a tag to compare

Add in experimental server.allRequests to create an allRequests route.

v1.7.1

11 May 11:18
Compare
Choose a tag to compare

Remove stray console log

v1.7.0

11 May 10:58
Compare
Choose a tag to compare
  • 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

11 May 09:24
Compare
Choose a tag to compare

Fix #245 and add test coverage

v1.6.13

01 Apr 14:38
Compare
Choose a tag to compare

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

08 Mar 16:17
Compare
Choose a tag to compare

Had a breaking bug introduced on edge cases when using perf and ssr.

v1.6.11

07 Mar 22:04
Compare
Choose a tag to compare

Remove stray console logs that we removed but didn't make it into the last release.