Daniel Silva

Results 32 comments of Daniel Silva

I think that leads to a potential problem. Suppose api1.yaml has a definition for OwnDef and a reference into defs.yaml with a definition for SharedDef. Also api2.yaml has a definition...

Scala 2.13 RC2 has just been released: https://twitter.com/scala_lang/status/1130665636428779520

@kaishh Can you please rename the issue? Scala 2.13 is out now: https://users.scala-lang.org/t/scala-2-13-0-is-here/4675

Removing the call to `resetAllAttrs` makes the following example no longer compile: ```scala object Demo { import scala.concurrent.ExecutionContext.Implicits.global import MonadlessFuture.{ lift, unlift } def demo: Future[Int] = { val future:...

As a shorter term solution (until turbo supports additional config for this in turbo.json), when turbo doesn't find a task in a package's package.json scripts, can it then check if...

Here's a workaround for the case @gotson mentioned: ```kotlin // Workaround for https://github.com/beryx/badass-runtime-plugin/issues/104 // The jre task correctly re-runs when we update the list of modules to include, // but...

Changing Final to use a type spread seems to work: ``` type Final = { ...Alternative, ...Base } ``` @vkurchatkin Any idea why Flow rejects the example from @agentcooper but...

@Chudesnov but with the spread definition of `Final`, flow accepted `type: 'A'` in `arr` and in `first`.

Right, it's different. See this example output: ``` > Task :...:scalaStyle UP-TO-DATE Build cache key for task ':...:scalaStyle' is 364ed5531f68bcb2bc56e4b1543c8547 Caching disabled for task ':...:scalaStyle': Caching has not been enabled...

This looks like a mix of scala 2.11 and 2.12 libraries in the gradle classpath. Maybe another plugin like https://github.com/scoverage/gradle-scoverage is adding an ABI-incompatible scala runtime.