Ivan Tanev

Results 55 comments of Ivan Tanev

We're in a similar situation - `aws-cdk` now uses `esbuild cli` for bundling lambda functions. Because of that, there is no way to specify plugins when bundling with CDK, which...

Fast-mutex is under ISC license, which as per github is: > A permissive license lets people do anything with your code with proper attribution and without warranty. The ISC license...

@andresgardiol `angular-chosen` is separate from [chosen-js](https://github.com/harvesthq/chosen). Even if we rewrote angular-chosen to be compatible with what you mean to be (I assume) browser es6 modules, `chosen-js` itself is not, and...

This really isn't the place, but 1 short example ```js import 'jquery' import 'chosen-js' import 'angular-chosen-localytics' import angular from 'angular' angular.module('app', ['localytics.directives']) ```

@leocaseiro The change itself is trivial, but we need to make a decision about semver - does this change necessitate bump to 2.0? Changing a dependency to a peerDependency means...

@leocaseiro I am trying to figure out our min requrements. README says angular 1.3, but we are pinned to 1.5+ right now. Where do we want it?

@OliverJAsh As a stopgap, you could write a `typeAny()` variation of `t.type()` that is something like: ```typescript const toSimpleObj = (o: T): T => JSON.parse(JSON.stringify(o)) export const typeAny = (...

@gcanti Is the canonical solution still to use a generic pick, or is io-ts going to provide an implementation at some point? Thanks!

This seems like a really great addition, would love to see it in react-hooks