Vaughan Rouesnel

Results 201 issues of Vaughan Rouesnel

It seems to throw on non-zero exit code. I would like to avoid wrapping in try/catch, and read the code. The documentation has an example showing usage of the `{code}`...

I'd like to be able to set a keyboard shortcut to activate the app so I can type a quick note. Would be great if it could focus the new...

https://github.com/flowtype/flow-typed/issues/650#issuecomment-362054968

There is no guard on this line: ``` exclude.some(...) ```

When you run `swc` it should search upwards for the first `.swcrc` file similar to how Babel does it. Although this became quite complex with Babel in later releases.

https://github.com/swc-project/register/blob/377bad1f81cc590b95cb207c0524e95718b4e065/src/node.ts#L64 `source-map-support` doesn't seem to work with `inline` maps (needs a require hook - https://github.com/evanw/node-source-map-support#options). To get accurate maps, it needs to be `true` in swc.

`source-map-support` should not be called more than once it can cause bugs. See: https://github.com/evanw/node-source-map-support/issues/200. Mainly relates to multiple versions, but still, wasted cycles. https://github.com/swc-project/register/blob/377bad1f81cc590b95cb207c0524e95718b4e065/src/node.ts#L69

When I try to import a `.ts` file from an ESM entry-point I get this error: ``` TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".ts" for /xxx/src/cli.ts at new NodeError (node:internal/errors:371:5) at...

You should allow config to be passed through to `Airtable.configure`.

`create` can take an array, which means its response can also be an array. `record._rawJson` returns `undefined` if the result is an array. ``` const record = await base(tableName).create(data); return...