Eric Clemmons

Results 57 issues of Eric Clemmons

I've been enjoying this project thus far, but a recent PR has introduced `React.PropTypes` via Flow. A related project supports it, and I was trying to figure out if this...

enhancement

```js const query = require('fs').readFileSync(`${__dirname}/MyQuery.graphql`, 'utf8'); describe('some test' () => { it('should do something', async () => { return request .post('/graphql') .send({ query, variables }) .expect(res => expect(res.body).toMatchSnapshot()) .expect(206); });...

Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. This fixes https://github.com/manidlou/node-klaw-sync/issues/17. Here is the...

Unless there's a better place, I'm thinking it would make sense for this repo to also include a workspaces example, showing backwards compatibility with monorepos.

The cynics have no problem killing processes, restarting servers, & having a crappy workflow to `npm install` dependencies, but have a problem with maybe accidentally installing a dependency because they've...

type: Feature

``` npm WARN [email protected] requires a peer of webpack@>=1.3.0

type: Bug

This would be useful for `@terse/webpack`'s own `Plugin` class, so that it can auto-install stuff that's missing.

type: Feature

Specifically, try this for Webpack2. For example, `.babelrc` has `es2015`, but `babel-loader` uses `es2015-webpack` for tree-shaking.

type: Feature

Not all terminal output starts with a command. For example, with multiple `steps`, it sometimes makes sense to "paginate" the output like: ```jsx ```

In #16, I found that it's pretty trivial to automatically instrument https://github.com/developit/htm's `vdom` output to use benefit. The rough code is: ````js import { html, render } from 'https://unpkg.com/htm/preact/standalone.mjs'; const...

enhancement