romandecker

Results 11 issues of romandecker

Wasn't sure if I should file this issue over at the `evil-surround` repo, but I think this is not an `evil-surround` problem but rather a problem on how I'm trying...

Would it be possible to export all flow type definitions? Here's a use case: ```js import { Value } from 'react-powerplug'; import { adopt } from 'react-adopt'; const Composed =...

The bodyParser middleware seems to buffer the whole file in memory for file uploads. Check the following minimum example: ``` 'use strict'; var os = require( 'os' ); var restify...

Bug
Help Wanted
Good First Issue
Critical

We are no longer able to configure the plugin from its configuration UI. The notifications we have configured in the past continue to work, but the configuration UI is broken...

bug

Proof of concept repository: https://github.com/romandecker/next-ts-with-cypress-coverage Steps to reproduce: 1. `npm install` 2. `npm run dev` 3. In another terminal: `DEBUG=code-coverage npm run cypress run` 4. `npm run see-cy-coverage` and verify...

Hey, I'm trying to make a union type directly queryable: ```js const Transaction = new gql.GraphQLUnionType({ name: 'Transaction', types: [GroupTransaction, PersonalTransaction], sqlTable: `(${knex .select('*', { groupTransactionId: knex.raw('NULL') }) .from('groupTransactions') .union(function()...

Example: ```js new Intl.DateTimeFormat('de-DE', {weekday: 'short', hour: 'numeric'}) .format(new Date('2019-08-14T05:36:24.200Z')) ``` Chrome/Firefox: `Mi, 07 Uhr` Intl (@1.2.5): `Mi., 7` This is particularly problematic when doing SSR, where we polyfill `Intl`...

Hey! I was wondering if this project supports what `tsserver` calls the `configure` request. I would like to configure the [`importModuleSpecifier`](https://github.com/microsoft/TypeScript/blob/master/src/server/protocol.ts#L3163 ) setting to relative, to be exact. Not sure...

Now uses sendFile (camelcased)

Hey there, is it possible to use `getMarkupFromTree` with `renderToStream` instead of `renderToString`?