Than Hutchins

Results 21 comments of Than Hutchins

Ideally it'd work the way the docs say. 😀 The workaround I came up with to create a new item from a query is pretty silly. If it's useful, I...

Sure! We ended up using a different select component and styling it like Blueprint, but this was the basics of my workaround before we swapped. 1. Ignore `createNewItemFromQuery` and `createNewItemRenderer`...

Try adding `"fn"` as a modifier. ` hs.eventtap.keyStroke({"fn", "cmd"},"left",100) ` works where `hs.eventtap.keyStroke({"cmd"},"left",100)` doesn't.

Easiest way to do this (so far as I know) is to run tsc first, then run your scanner on its output. I have this in my package.json. ``` scripts:...

Because i18next-scanner doesn't parse typescript files, so it'll choke when it hits syntax it doesn't recognize. Compiling removes all that syntax.

Seems like this is related to webpack 5 caching, and should be [fixable like this](https://github.com/vercel/webpack-asset-relocator-loader/issues/141#issuecomment-980435662). We should consider adding that as a default parameter during `development` mode.

The search term `plugins ` triggers this error. Will dig a bit deeper... ``` Uncaught (in promise) TypeError: Cannot read property 'replace' of undefined at Object.o (main.bundle.js:1) at Object.c (main.bundle.js:1)...

Dug deeper. This is fixed in 3.2. This is only still an issue b/c https://cerebroapp.com/ downloads 3.0 by default. Can be closed.

No idea. 😆 I don't think I ever knew, but if I did, it's lost in the sands of time.

Just ran into something similar. Seems like the current behaviour is to reject if there's anything printed to stderr rather than using the exit code. (Has really weird connotations for...