vhscom

Results 59 comments of vhscom

One thing to take into consideration is that I doubt many projects do, or would even want, to add an `.editorconfig` file if they're using prettier. I could see that...

Linking to https://github.com/vitejs/vite/issues/7821

Switching to DOMPurify as OP suggested resolved the wall of warnings with Vite 5. DOMPurify is DOM-only. If you're looking for an isomorphic solution in a single package, [js-xss](https://github.com/leizongmin/js-xss) will...

Using [tsup](https://github.com/egoist/tsup) to package up some vanilla test helpers and ran into issues consuming the bundled code with Playwright until I let CJS have the `.js` extension.

> Your file path needs to terminate with a image mime-type > Example: /path/to/screenshot .png > > screenshot.png will be the name of screenshot ;) Thanks! Works for Playwright too,...

Landed here today debugging the following error while running `sam local invoke` from a built Hello World template: ``` Error: Credentials store error: StoreError('Credentials store docker-credential-gcr exited with "docker-credential-gcr/helper: could...

For anyone lost in the weeds, there's a decent workaround for handling full-screen error page layouts [documented here](https://github.com/sveltejs/kit/issues/2694#issuecomment-991893665) with example implementation [here](https://github.com/vhscom/svelte-headlessui-starter/blob/de79e1cf9773ea1edce52f97b29570776712bae8/src/hooks/index.ts#L5-L21). It's a fairly non-invasive procedure. Not perfect but...

This appears to be an upstream issue https://github.com/material-components/material-components-web/issues/6212

Related to https://github.com/hperrin/svelte-material-ui/issues/240, in which the select all checkbox becomes checked when a user selects an extraneous checkbox located within a data table.

Minimal reproduction: https://github.com/vhscom/smui-issue-562-repo-data-table-header-checkbox Verified issue is not a clear regression by backing down from `^7.0.0-beta.0` to `v6.2.0` and can reproduce. I've created two workarounds, one using a Svelte `key` block...