Derek Wickern

Results 111 comments of Derek Wickern

I used this setting to exclude the public folder ``` excludeFilter in (Assets, JshintKeys.jshint) := { val public = (baseDirectory.value / "public").getCanonicalPath new SimpleFileFilter(_.getCanonicalPath startsWith public) } ```

The workaround with different string casing doesn't work, because the headers are placed into a case-insensitive hash. Please fix this!

A comma-delimited header value *should* be equivalent to the same header repeated, but in practice it's not, at least for `WWW-Authenticate`. Compare browser support for [comma-delimited](https://greenbytes.de/tech/tc/httpauth/#multibasicunknown2) vs [multiple headers](https://greenbytes.de/tech/tc/httpauth/#multibasicunknown2mf) and...

Yeah, unfortunately chrome doesn't tell me whether the dark theme is active or not. Custom formatters only have access to the `style` tag so you can't even add the CSS...

Related binaryage/cljs-devtools#30

Nope, can't use any attributes except `style` (source: [devtools sources](https://github.com/ChromeDevTools/devtools-frontend/blob/dfa5242e212e67dde9a5c02165e25a578bfd85c2/front_end/object_ui/CustomPreviewComponent.js#L75)). And inline styles can't use css rules like `-theme-with-dark-background > div`. We can't check if the class is present on...

I can merge this but I'm afraid it will need more work. This project is built with [goxc](https://github.com/laher/goxc) which is now archived, and it's published to [bintray](https://bintray.com/dwickern/packer-plugins/packer-post-processor-virtualbox-to-hyperv) which has shut...

Embroider imports `uniqueId` from `@ember/helpers`: https://github.com/embroider-build/embroider/blob/217e7a8f851f43575d08970d53860c5067994c43/packages/compat/src/resolver-transform.ts#L106-L108 But that export was added in ember 5.2 https://github.com/emberjs/ember.js/pull/20464. For older ember versions it's a built-in helper.

Try these settings: ```scala javaOptions += "--add-opens=java.base/sun.nio.ch=ALL-UNNAMED" // fork tests in order to pick up javaOptions when running tests Test / fork := true // these will be added to...