Leon Radley

Results 40 comments of Leon Radley

Will do. Just wanted to check that your still alive :) Thanks for the quick reply. On Wed, Mar 7, 2012 at 3:59 PM, Rostislav Hristov < [email protected] > wrote:...

Please release version 0.4.0

I encountered this yesterday. it's because pnpm installs libs to node_modules/.pnpm/vee-validate and symlinks them to the root. so the transformIgnorePattern doesn't find it directly under node_modules So this will work:...

It could be the slash in the beginning or something with the path to where the rules are. try it without ``` transformIgnorePatterns: ['node_modules/.pnpm/(?!vee-validate)'] ```

I have a NX monorepo. so it's not really applicable to your setup, sorry

When moving the file input into the hidden form and back. the input's change event get's removed. To fix this we need to clone the input's events. This isn't possible...

@peeterslaurens was a while since I looked at this but. If I remember correctly, by adding jQuery it clones the element correctly and it just works. If you cant get...

You might be right there. please submit a pull request to have it fixed :P

I'm not a node developer, but I got my example working properly. There I just move the uploaded file instead of creating a buffer. https://github.com/leon/angular-upload/blob/master/example/server.js#L33

Checked into it also and as you say, since the Devtools Protocol is based on JSONRPC we are stuck with having to serialize everything to strings, which is really bad...