Mayank
Mayank
## Changes Just checks `flags.y` in addition to `flags.yes`. ## Testing I didn't see any tests. ## Docs QoL change. Not sure if it needs to be documented.
#### What version of `astro` are you using? 1.0.0-rc.8 #### Are you using an SSR adapter? If so, which one? None #### What package manager are you using? npm ####...
### What version of `astro` are you using? 1.0.0-rc.3 ### Are you using an SSR adapter? If so, which one? None ### What package manager are you using? npm ###...
### What version of `astro` are you using? 1.0.0-rc.1 ### Are you using an SSR adapter? If so, which one? None ### What package manager are you using? npm ###...
BackstopJS currently uses a several years old version of `chalk`. https://github.com/garris/BackstopJS/blob/fbc8bd59a77ad0be5f3ba71a97b0468bd16752b8/package.json#L87 This is a slight problem because it has a transitive dependency on `ansi-regex@2` (via `strip-ansi@3`), which has a security...
The following snippet errors out with `Expected &, * is used with @media (prefers-reduced-motion)`, even though it is perfectly valid. ```scss @media (prefers-reduced-motion: no-preference) { .some-class { &, * {...
We have a lot of code in our project that does something like this: ```scss @mixin some-mixin { transition: all 0.2s ease-out; // ... other code } ``` and we...
It's not super clear which CSS-in-JS libraries work, so I'm creating this issue as sort of a place to start the conversation and document the current status. Here's a few...
I bumped into visbug again today and really enjoyed playing around with "Position" tool in particular. It's so cool that we can drag things around in the browser! 😄 The...
Vite externalizes SSR dependencies by default: https://vitejs.dev/guide/ssr.html#ssr-externals A lot of npm packages are not ESM-ready so it leads to errors when using ESM imports. This can be fixed by forcing...