Andrew Smith

Results 41 issues of Andrew Smith

In specifying the optional `file` parameter for the DELETE, GET, POST, and PUT methods, the documentation reads: > Optional; specify a filesystem path to save the response body as file...

This provides an example usage of `babel-plugin-ramda`, which does the best job of minimizing bundle size for webpack (when Babel is also used).

The tutorial is inconsistent about using `res.sendfile` or `res.sendFile`. If `res.sendFile` is used (since `sendfile` is deprecated), using `res.sendFile('index.html');` doesn't work, throwing an error about the path not being specified...

### Bug description The current workaround to generate enums in Prisma types behaves slightly differently from the native TS enums, and causes subtle errors when maintaining our own copy of...

kind/improvement
topic: client types
team/client
topic: enums
topic: breaking change

Fixes #14620. ## Test plan I was unable to run the tests locally, it was giving me an error: ``` $ pnpm run test > dev-env@ test /Users/andrew/Projects/prisma > ts-node...

## Problem `modules/gather-prisma-backend/node_modules/@prisma/client/index.d.ts` does a wildcard export of the generated types: ```ts export * from '.prisma/client' ``` Say I have a model like `User` and in my code I type...

kind/improvement
topic: dx
topic: client types
topic: editor
team/client

For various reasons, I had a TS path that reached deeply into an npm package: ``` paths: { "@foobar/*": ["./node_modules/eslint/lib/rules/*"] } ``` I'd have an import like this: ```js import...

Hello! I stumbled a fair bit trying to get this running on DigitalOcean. The instructions were great, but I fell into a couple easy mistakes because of my unfamiliarity with...

Starting in the top left corner, pressing the right key repeatedly initially drops down to the bottom tab group, which is unexpected, as shown in the gif. ![2016-12-15-keyboard](https://cloud.githubusercontent.com/assets/5187404/21238702/dc3d3a0c-c2b8-11e6-9f35-bbe5b69ad49a.gif)

bug
important

It's useful among subscribers to know which action is being dispatched. This PR provides the action object to subscribed functions.