From 635a24c6444dfeeba38ae0d14e4207baddb13de5 Mon Sep 17 00:00:00 2001 From: Mark Canlas Date: Sat, 6 Apr 2024 09:52:25 -0400 Subject: [PATCH] add playground --- build.sbt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7b100b6..ee9d74b 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ lazy val firepower = .in(file(".")) .withCats .withTesting - .aggregate(nescant, core, cpu, demo) + .aggregate(nescant, core, cpu, demo, playground) lazy val nescant = project.withCats.withTesting @@ -25,3 +25,7 @@ lazy val demo = .settings(libraryDependencies += "com.htmlism" %% "rufio-zio" % "76-c565ab28") .withGitHubPackagesCredentials .withResolver("rufio") + +lazy val playground = + module("playground") + .withCats