John Schulz

Results 27 issues of John Schulz

I ran this on a project recently and hit a few types of failing or unexpected behavior. I don't know how best to iterate on this so I figured I'll...

I ran `ts-import-types-cli -p path/to/tsconfig.json -d` and it failed with ``` SyntaxError: /Users/jfsiii/work/kibana/x-pack/plugins/fleet/tsconfig.json: Unexpected token } in JSON at position 212 at parse () at Object.Module._extensions..json (internal/modules/cjs/loader.js:1106:22) at Module.load (internal/modules/cjs/loader.js:928:32)...

### Steps to reproduce See https://stackblitz.com/edit/cloudflare-templates-gdw8ku?file=src%2Findex.ts Given ```typescript const otelSdk = new WorkersSDK(request, ctx, { service: 'some-service-name', endpoint: 'https://httpbin.org/status/200', }); try { console.log('fetching...'); const upstreamResponse = await otelSdk.fetch('https://httpbin.org/uuid'); console.log('fetched. now...

Storybook has [released a new major version](https://medium.com/storybookjs/storybook-4-0-is-here-10b9857fc7de) I didn't see a migration guide for addon authors, but maybe there's some useful in these - https://medium.com/storybookjs/migrating-to-storybook-4-c65b19a03d2c - https://github.com/storybooks/storybook/blob/master/MIGRATION.md - https://storybook.js.org/addons/writing-addons/#the-addon

Scala declarations can include type information for both parameters and return values. It'd be great if `DocBlockr` could parse them. Some examples: ``` scala def add(a: Int, b: Int): Int...

Language request

I want to a) not throw an error when `!response.ok` b) have full access to the `Response` (`statusText`, `body`, `headers`) etc e.g. given ```ts const response = await api.post(`/endpoint`, {...

## What I did I ran "Convert routes to v2 convention" from on a directory that looked like this tree routes before: 19 directories, 47 files ``` routes/ ├── __anonymous...