Skip to content

Commit

Permalink
Get rid of static gzip, as it isn't used anyway
Browse files Browse the repository at this point in the history
  • Loading branch information
v6ak committed Oct 22, 2023
1 parent fd23fae commit b6f57c7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Expand Up @@ -80,7 +80,7 @@ jobs:
run: find

- name: Compare artifacts
run: diff --exclude="*.gz" -r build/unpacked verification/unpacked
run: diff -r build/unpacked verification/unpacked


deploy-to-github-pages:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Expand Up @@ -60,7 +60,7 @@ lazy val server = (project in file("server")).settings(
scalaJSProjects := Seq(client),
scalaJSStage := FullOptStage,
Assets / pipelineStages := Seq(scalaJSPipeline),
pipelineStages := Seq(concat, removeLibs, filter, digest, simpleUrlUpdate/*, digest*/, removeUnversionedAssets, gzip, moveLibs),
pipelineStages := Seq(concat, removeLibs, filter, digest, simpleUrlUpdate/*, digest*/, removeUnversionedAssets, moveLibs),
digest / includeFilter := "*",
digest / excludeFilter := "*.html" || "*.csv" || "*.json" || "*.json.new" ||
// When sbt-simple-url-update updates path for glyphicons-halflings-regular.woff, it garbles the path for glyphicons-halflings-regular.woff2.
Expand Down
2 changes: 0 additions & 2 deletions project/plugins.sbt
Expand Up @@ -16,8 +16,6 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")

addSbtPlugin("com.vmunier" % "sbt-web-scalajs" % "1.2.0")

addSbtPlugin("com.typesafe.sbt" % "sbt-gzip" % "1.0.2")

addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.4")

addSbtPlugin("org.irundaia.sbt" % "sbt-sassify" % "1.5.1")
Expand Down

0 comments on commit b6f57c7

Please sign in to comment.