From b4b3dbf488529dbd8e94f98ae2c8e27ec964af97 Mon Sep 17 00:00:00 2001 From: Hazel Bachrach Date: Wed, 17 Jan 2024 23:58:13 -0800 Subject: [PATCH] Add support for gleam >=0.32.0 It is now a compile error to import a type without a `type` keyword. This change updates this package to work with gleam versions >=0.32.0 --- src/gleam/bbmustache.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gleam/bbmustache.gleam b/src/gleam/bbmustache.gleam index b3f4785..1922ef5 100644 --- a/src/gleam/bbmustache.gleam +++ b/src/gleam/bbmustache.gleam @@ -1,4 +1,4 @@ -import gleam/string_builder.{StringBuilder} +import gleam/string_builder.{type StringBuilder} // Template compilation pub type Template