summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 5 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 3a314e9..1b095e2 100644
--- a/build.sbt
+++ b/build.sbt
@@ -56,9 +56,12 @@ lazy val book = Project(
"org.webjars" % "font-awesome" % "4.2.0",
"com.lihaoyi" %%% "upickle" % "0.2.5"
),
- (resources in Compile) += {
+ (resources in Compile) ++= {
(fullOptJS in (demos, Compile)).value
- (artifactPath in (demos, Compile, fullOptJS)).value
+ Seq(
+ (artifactPath in (demos, Compile, fullOptJS)).value,
+ new java.io.File((artifactPath in (demos, Compile, fullOptJS)).value.getPath + ".map")
+ )
},
(unmanagedResourceDirectories in Compile) ++=
(unmanagedResourceDirectories in (demos, Compile)).value,