Derek Wickern

Results 112 comments of Derek Wickern

I have a hard time choosing a default... I feel like the user needs to choose which distribution and especially which JVM version If we simply removed the default value,...

Sorry, I'm not sure I understand your suggestion about instance methods. This PR fixes the types to match the runtime behavior. Unlike `interface` which is a compile-time construct, a `class`...

Re: Java 8 compatibility, I found the relevant change in the [JDK 9 release notes](https://www.oracle.com/java/technologies/javase/9-relnotes.html#JDK-8041435) (bold mine) > #### JDWP socket connector accept only local connections by default >The JDWP...

The culprit seems to be one of these plugins that are added by default. I didn't narrow it down to a specific one. ```js // plugins added by ember-cli-babel [...

> is it still an issue in 6.4.0-alpha.3? Yes

Ok, so the problem is babel's [compact](https://babeljs.io/docs/options#compact) option which, by default, strips whitespace from large files. It works to set `compact: false` in ember-cli-babel's source. I've tried a few ways...

There's one more internal API here: > 'getModuleFile()' is marked unstable with @ApiStatus.Internal https://github.com/Turbo87/intellij-emberjs/blob/a580e01a91bbe0a60939be36346c934f9c66b866/src/main/kotlin/com/emberjs/configuration/EmberCommandLineState.kt#L20

This is still an issue if you request http://localhost:9000/foo/ with the trailing slash. I believe the problem is in the generated routes. With this configuration: ```ini # conf/application.ini play.http.context =...

It's possible that ```scala Assets / packageTimestamp := Package.keepTimestamps ``` would be a reasonable default. Personally I would have to revert it back because I use `SOURCE_DATE_EPOCH`. But I could...

> Use this line in `build.sbt` > > ThisBuild / packageOptions += Package.FixedTimestamp(Package.keepTimestamps) I would configure it like this: ```sbt // this should be the default in Play's sbt plugin...