Elderjs Versions Save

Elder.js is an opinionated static site generator and web framework for Svelte built with SEO in mind.

v1.7.5

1 year ago

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

v1.7.4

1 year ago

Fix circular JSON on data and allRequest routes.

v1.7.3

1 year ago

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

v1.7.2

1 year ago

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

v1.7.1

1 year ago

Remove stray console log

v1.7.0

1 year ago
  • 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

1 year ago

Fix #245 and add test coverage

v1.6.13

2 years ago

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

2 years ago

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

v1.6.11

2 years ago

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