Skip to content

Commit

Permalink
Fix sbt-less-plugin-tester
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Jan 12, 2024
1 parent 1dba3ca commit 4bc3cf6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sbt-less-plugin-tester/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ lazy val root = (project in file(".")).enablePlugins(SbtWeb)

libraryDependencies += "org.webjars" % "bootstrap" % "3.0.2"

LessKeys.compress in Assets := false
Assets / LessKeys.compress := false

includeFilter in (Assets, LessKeys.less) := "foo.less" | "bar.less"
Assets / LessKeys.less / includeFilter := "foo.less" | "bar.less"
4 changes: 2 additions & 2 deletions sbt-less-plugin-tester/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
lazy val root = Project("plugins", file(".")).dependsOn(plugin)
lazy val plugin = RootProject(file("..").getAbsoluteFile.toURI)

lazy val plugin = file("../").getCanonicalFile.toURI
lazy val root = (project in file(".")).dependsOn(plugin)

0 comments on commit 4bc3cf6

Please sign in to comment.