Ben Cates

Results 2 comments of Ben Cates

Adding to this, things go wrong if the _application_ version hasn't been bumped even if the _release_ version has. I'm attempting to set up automatic versioning of our releases, which...

This is already possible using the `session` store. ``` import { fetchPost } from 'some/api/layer' export async function preload({ params }, session) { if (!session.posts.hasOwnProperty(slug)) session.posts[slug] = await fetchPost(slug); return...