Blake V.
Blake V.
would like spec title available in lighthouse() callback in order to create uniquely titled logfiles
I found a way. In `plugins`, do something like: ``` let lighthouseFilenameStr: string module.exports = (on, config) => { on('task', { setlighthouseFilenameStr: (newLighthouseFilenameStr) => { lighthouseFilenameStr = newLighthouseFilenameStr return null...
@KadirAtug07 please create a new question thread, not relevant to the question at hand.
> It works with Node 16. You'll see that's the recommended version in our [`.nvmrc` file](https://github.com/palantir/blueprint/blob/develop/.nvmrc). I recommend you install nvm and run `nvm use` in your terminal whenever you...
> It would also be helpful if you could expand on your request and help us better understand your use case. Do you mind explaining with code what you're trying...
> What I want to do is aliasing some values that need to be cleaned up. In order to abstract the cleanup process, I want to check if I need...
`NonEmptyTuple`'s type could definitely be improved to allow passing a type restriction to the tuple: Current: `export type NonEmptyTuple = readonly [unknown, ...unknown[]]` Proposed: `export type NonEmptyTuple = readonly [T,...
Note: adding this to the Vite config fixes the issue: ```typescript optimizeDeps: { exclude: ['zod'], }, test: { alias: { zod: path.resolve('./node_modules/zod/lib/index.js'), }, } ``` But hoping the issue can...
Possibly related: https://github.com/colinhacks/zod/issues/222
PR to add this: https://github.com/Xetera/ghost-cursor/pull/133
@adidahiya that is tricky. After reading through those, I agree my original choice of `listbox` was incorrect. It sounds like `radiogroup` is the best option, I changed the code to...