From 1f561c4589e965069f6b89ce3cfa24e86a7d3226 Mon Sep 17 00:00:00 2001 From: James Carlson Date: Tue, 18 Jun 2024 11:10:05 +0100 Subject: [PATCH] Expose 'initSimple' --- src/Install/Import.elm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Install/Import.elm b/src/Install/Import.elm index 26adcc1..b2db907 100644 --- a/src/Install/Import.elm +++ b/src/Install/Import.elm @@ -1,7 +1,4 @@ -module Install.Import exposing - ( init, makeRule - , initSimple - ) +module Install.Import exposing (init, initSimple, makeRule) {-| Add import statements to a given module. For example, to add `import Foo.Bar` to the `Frontend` module, you can use the following configuration: @@ -20,7 +17,7 @@ There is a short cut for importing modules with no alias or exposed values: Install.Import.initSimple "Frontend" [ "Foo.Bar", "Baz.Qux" ] |> Install.Import.makeRule -@docs init, makeRule +@docs init, initSimple, makeRule -}