Chet Corcos

Results 85 issues of Chet Corcos

```ts const compiler = webpack(config) compiler.run(function(err, stats) { // no error when loader fails typecheck. }) ```

I have a rather bizarre issue where I'm getting errors when building with webpack. But I'm not seeing any errors when I run `tsc`. Not sure what's up with this...

Why aren't you releasing new versions with all of these merged PR's?

I need to use the babel preset query to resolve the paths to the preset files because my build configurations are in a sibling directory to my application For example,...

I get an error that result is not defined. ```tsx class Storage { // lru calls this callback synchronously public get(key: string): Value | null { let result: Value lru.getItem(this.makeKey(key),...

Stagger adds a really nice touch to animations like transition.slideUpIn, but I'm having an issue using it with large lists. My specific case is this: I have 100 items in...

**Describe the bug** When creating an empty watcher, the "ready"/"error" events are never called. I'd like to create the watcher and the add and remove paths dynamically. **Versions (please complete...

mac
has test case

Hey, I'm don't write command line applications terribly often, but when I do, I always find myself writing a variety of helper functions. For example here's what I have thus...

question

I have a suggestion for lifting an object of streams. ``` coffee liftAllObj = (signals) -> labeled = ([name, stream]) -> flyd.map( (value) -> {"#{name}": value} stream ) streams =...

The issue I'm trying to solve is tying to make this listOf function more performant: https://github.com/paldepind/functional-frontend-architecture/blob/master/examples/nesting/js/list.js#L38 We can use thunks and stuff to lazily evaluate the UI. But the action$...