Andreas Herd
Andreas Herd
Everything works like a charm, except the transforms.
do deferred events bubble up? if so I would rather just add another on:keydown farther up in my app if I needed a global keyevent handler
@chanlito as work around I do it by delegating new decorators to existing ones: `export const IsRequired: Function = () => IsNotEmpty({ message: () => translate('validation.required') });`
in general there should be a way to customize which library one wants to use. some simple adapter for each library can be easily written, I for one would love...
`````` gulp.task('definitions', function(done) { var exec = require('child_process').exec; var cmd = 'node ./node_modules/dts-generator/bin/dts-generator --name myproject --baseDir src/typescript --project ./ --out typings/myproject/myproject.d.ts'; exec(cmd, function(error, stdout, stderr){ console.log(stdout); console.log(stderr); done(); }); });```...
downgrading to 14.1.2 fixed it for me, maybe some less harsh downgrade would also work
> Hi @mendrik, > > Thanks for contributing. Would you be able to provide a test as well? See here how tests are done: https://github.com/char0n/ramda-adjunct/tree/master/test sorry if I misunderstand something,...
ok so I got stuck with this: ``` import * as RA from 'ramda-adjunct'; RA.renameKeys({ A: 'B'} as const, { A: 1, C: 4 }).B; // $ExpectType number ``` doesn't...
closing, sorry it is constantly misbehaving for me in the tests, even after rebasing. 
> @mendrik, > > Sorry for your trouble. I was able to successfully incorporate your change into the codebase in #2370. I've properly attributed you in the commit. > >...