From 40d25d09b797f164b205f97fe864680132273db2 Mon Sep 17 00:00:00 2001 From: cha0s Date: Tue, 8 Mar 2022 16:08:38 -0600 Subject: [PATCH] chore: doc --- packages/core/build/dox/concepts/hooks.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/core/build/dox/concepts/hooks.md b/packages/core/build/dox/concepts/hooks.md index bf87072..4c7f5f8 100755 --- a/packages/core/build/dox/concepts/hooks.md +++ b/packages/core/build/dox/concepts/hooks.md @@ -304,6 +304,8 @@ Our `flecks.yml` could be configured like so: In this application, when `@flecks/http/server.request.route` is invoked, `@flecks/user/session`'s implementation is invoked (which reifies the user's session from cookies), followed by `my-cool-fleck`'s (which, we assume, does some kind of very cool dark mode check). +### Ellipses + It may not always be ergonomic to configure the order of every single implementation, but enough to specify which implementations must run first (or last). For example, suppose we have multiple implementations that require there to have been a reified user session, but which order those implementations run might not be a concern. For this, flecks provides you with the ellipses entry: