Rhy Moore

Results 8 comments of Rhy Moore

Maybe it's documented in a misleading way, but the new Storybook-official addon seems very designed around MDX and writing documentation in JavaScript. "Not tied to React," in some ways, but...

Either as `color-mod(--seafoam-100)` or as `color-mod(var(--seafoam-100))`, I get this error: ``` CssSyntaxError: postcss-color-mod-function: ~/dls-alerts/src/alert-panel.css:63:34: Expected a color ``` I don't get how the value of `--seafoam-100` can be known and...

Another interesting glitch... ``` margin-left: calc(var(--medium) * -1); ``` ``` ParserError: Syntax Error at line: 1, column 21 ``` _allegedly_ via `postcss-values-parser` (??). However, ``` margin-left: calc(-1 * var(--medium)); ```...

Just ran into a little issue with this trying to build [email protected] with Rollup; [rollup-plugin-node-resolve](https://github.com/rollup/rollup-plugin-node-resolve) doesn't support the `esnext` field that I needed to get at `dist/esnext`. Couldn't figure out...

So long as it's not misleading as to the relationship between the stylesheets and the document/shadow root in a problematic way, I think it's nice that a web component's shadow...

Just wanna chime in, this is a good idea and there are numerous reasons to want it, especially if you can still use Svelte's own support for the `` functionality...

I have this issue too, and I'd swear it _used_ to work better. But currently SVGO doesn't "flatten" or precalculate even _very simple_ transforms. I have examples where there's a...

I found that for 4.0.0, `--no-git-tag-version` skips all git interactions. No tag, no commit, no push. (`--no-push` appears superfluous and `--push` doesn't change anything about the behavior.) Using it prevents...