Skip to content

Commit

Permalink
v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ofilangi committed Jun 30, 2021
1 parent eb632e9 commit cd450ad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import sbt.Keys.{testFrameworks, version}

lazy val version_n3="1.10.0"

def getPackageSetting = Seq(
name := "n3js",
version := "1.0.1",
version := version_n3 ,
scalaVersion := "2.13.5",
organization := "com.github.p2m2",
organizationName := "p2m2",
Expand Down Expand Up @@ -57,17 +59,17 @@ lazy val root = project.in(file(".")).
settings(inConfig(IntegrationTest)(ScalaJSPlugin.testConfigSettings): _*).
settings(
getPackageSetting,
scalaJSLinkerConfig in (Compile, fastOptJS ) ~= {
Compile / fastOptJS / scalaJSLinkerConfig ~= {
_.withOptimizer(false)
.withPrettyPrint(true)
.withSourceMap(true)
},
scalaJSLinkerConfig in (Compile, fullOptJS) ~= {
Compile / fullOptJS / scalaJSLinkerConfig ~= {
_.withSourceMap(false)
.withModuleKind(ModuleKind.CommonJSModule)
},
webpackBundlingMode := BundlingMode.LibraryAndApplication(),
npmDependencies in Compile ++= Seq("n3" -> "1.8.1"),
Compile / npmDependencies ++= Seq("n3" -> version_n3),
libraryDependencies ++= Seq(
"com.github.p2m2" %%% "data-model-rdfjs" % "1.0.0",
"net.exoego" %%% "scala-js-nodejs-v14" % "0.13.0" % "test",
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.4.7
sbt.version = 1.5.4
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.jetbrains" % "sbt-ide-settings" % "1.1.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.6.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.20.0")
addSbtPlugin("io.crashbox" % "sbt-gpg" % "0.2.1")
addSbtPlugin("io.crashbox" % "sbt-gpg" % "0.2.1")

0 comments on commit cd450ad

Please sign in to comment.