Skip to content

Commit

Permalink
Bump Cask to 0.9.1 in example/web/ (#2413)
Browse files Browse the repository at this point in the history
This fixes the content type of the static resources, letting CSS load
properly in the browser

Pull request: #2413
  • Loading branch information
lihaoyi authored Apr 4, 2023
1 parent ab05091 commit df86a07
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example/web/1-hello-webapp/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object app extends RootModule with ScalaModule{

def scalaVersion = "2.13.10"
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.9.0",
ivy"com.lihaoyi::cask:0.9.1",
ivy"com.lihaoyi::scalatags:0.12.0"
)

Expand Down
2 changes: 1 addition & 1 deletion example/web/2-todo-webapp/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object app extends RootModule with ScalaModule{

def scalaVersion = "2.13.10"
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.9.0",
ivy"com.lihaoyi::cask:0.9.1",
ivy"com.lihaoyi::scalatags:0.12.0"
)

Expand Down
2 changes: 1 addition & 1 deletion example/web/4-webapp-scalajs/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ object app extends RootModule with ScalaModule{

def scalaVersion = "2.13.10"
def ivyDeps = Agg(
ivy"com.lihaoyi::cask:0.9.0",
ivy"com.lihaoyi::cask:0.9.1",
ivy"com.lihaoyi::scalatags:0.12.0"
)

Expand Down
2 changes: 1 addition & 1 deletion example/web/5-webapp-scalajs-shared/build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ object app extends RootModule with AppScalaModule{

def moduleDeps = Seq(shared.jvm)

def ivyDeps = Agg(ivy"com.lihaoyi::cask:0.9.0")
def ivyDeps = Agg(ivy"com.lihaoyi::cask:0.9.1")

def resources = T{
os.makeDir(T.dest / "webapp")
Expand Down

0 comments on commit df86a07

Please sign in to comment.