-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #115 from ScalablyTyped/beta5
Beta5 - Finalize Scala.js 1 support
- Loading branch information
Showing
60 changed files
with
1,087 additions
and
972 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
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
8 changes: 4 additions & 4 deletions
8
...er-portable/src/main/scala/org/scalablytyped/converter/internal/importer/FacadeJson.scala
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,13 +1,13 @@ | ||
package org.scalablytyped.converter.internal | ||
package importer | ||
|
||
import org.scalablytyped.converter.internal.scalajs.Dep | ||
import io.circe.Decoder | ||
import io.circe.generic.semiauto.deriveDecoder | ||
import org.scalablytyped.converter.internal.scalajs.Dep | ||
|
||
final case class FacadeJson(typings: Set[String], dependencies: Set[Dep]) | ||
final case class FacadeJson(typings: Set[String], dependencies: Set[Dep.ScalaJs]) | ||
|
||
object FacadeJson { | ||
implicit val DecoderDep: Decoder[Dep] = deriveDecoder[Dep] | ||
implicit val Decoder: Decoder[FacadeJson] = deriveDecoder[FacadeJson] | ||
implicit val DecoderDep: Decoder[Dep.ScalaJs] = deriveDecoder[Dep.ScalaJs] | ||
implicit val Decoder: Decoder[FacadeJson] = deriveDecoder[FacadeJson] | ||
} |
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
Oops, something went wrong.