forked from hntd187/spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Workbench plugin to run example self contained
Previously the url was hardcoded to a windows path where I assume a local web server was serving the example. This plugin loads the example from `sbt` with the command `startWorkbenchServer`, along with some helpful debugging features.
- Loading branch information
1 parent
3b24c1b
commit abf482d
Showing
3 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
libraryDependencies += "org.scala-js" %% "scalajs-env-selenium" % "0.3.0" | ||
|
||
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.4.2") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0") | ||
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.7") | ||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.5") | ||
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.4") | ||
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.1") | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.28") | ||
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.4.2") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0") | ||
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.7") | ||
addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.5") | ||
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.11") | ||
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.4") | ||
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "0.6.1") | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.28") | ||
addSbtPlugin("com.lihaoyi" % "workbench" % "0.4.1") |