Julien Cayzac

Results 80 comments of Julien Cayzac

@zkochan maybe I'm doing something wrong, then đŸ˜„ I _thought_ this was required for a subpackage to be able to find a dev dependency declared in its parent workspace's `package.json`...

> I tried to set up [http://twind.dev](http://twind.dev/) with aleph, but it requires some stuff for it to work in SSR :) > > ``` > import 'https://cdn.skypack.dev/twind/shim' > ``` >...

> It's 2018 now, HTTP/2 is widely used It's 2022 now, HTTP/3 is an industry standard…

You can trivially inject meta like this: ### index.html ```diff Foo + + ``` ### SEO plugin ```js 'use strict'; /* * Update the page info based on frontmatter data...

My site uses a theme already. I got my slides to work using `gatsby-theme-mdx-deck` but styling breaks: - If `gatsby-theme-mdx-deck` is first in `gatsby-config.js`, then my site's styles are wiped...

Being a bit more specific, support for YAML version 1.2 configuration files would be neat (there are many well-established libraries that only support 1.1).

I expected this not to depend at all on Spotless, and to simply work since `ktlint` has an `--editorconfig` option: ``` spotless { kotlin { target '**/*.kt' ktlint().userData(['editorconfig': "$rootDir/.editorconfig"]) }...

It seems Spotless always sets the `editorconfig` param to `null`: https://github.com/diffplug/spotless/blob/3a2620b17003dc56cc74ad1c2f3a6fcd3aea0af5/lib/src/main/java/com/diffplug/spotless/kotlin/KtLintStep.java#L171 Why is that?

I'm also looking forward to this being fixed. Being able to generate my plists from yaml in ubuntu runners would be nice. Thanks!

It doesn't work in template strings: ```js const work = [ '#ffaa00', "#ffaa00", ]; const doesntWork = [ `#ffaa00`, ]; ```