We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5de514 commit 52cc301Copy full SHA for 52cc301
README.md
@@ -12,9 +12,12 @@ This repository contains `scalajs-env-phantomjs` for Scala.js 1.x. In Scala.js
12
// project/plugins.sbt
13
addSbtPlugin("org.scala-js" % "sbt-scalajs-env-phantomjs" % "1.0.0")
14
15
+// Add an explicit import if using project/*.scala
16
+import org.scalajs.jsenv.phantomjs.PhantomJSEnv
17
+
18
// build.sbt (inside .settings(...) for multi-project builds)
-jsEnv := PhantomJSEnv().value
-scalaJSLinkerConfig ~= { _.withESFeatures(_.withUseECMAScript2015(false)) }
19
+Test / jsEnv := new PhantomJSEnv(PhantomJSEnv.Config()))
20
+Test / scalaJSLinkerConfig ~= { _.withESFeatures(_.withUseECMAScript2015(false)) }
21
```
22
23
The last line is needed because Scala.js emits ECMAScript 2015 code by default,
0 commit comments