Danilo Bargen

Results 535 comments of Danilo Bargen

MSRV had to be bumped due to clap dependencies. I picked 1.75, which was released in December 2023.

Thanks @Ian2020 for the work on this, I'm also running into the problems in #377. I applied the patch in this PR, but noticed that actual local dependencies (starting with...

> The current behavior if such a command is run without a tty attached is that it errors out. We probably should do that in the tty case too, better...

@mattdesl yes! ``` git clone https://github.com/threema-ch/threema-web cd threema-web sed -i 's/"budo": "^9"/"budo": "^11"/' package.json npm install npm run devserver ``` Then open http://localhost:9966/ in your browser and edit/save a SCSS...

Ah, that makes sense! Thanks a lot for taking a look :slightly_smiling_face: The suggested workaround seems to do the trick! :+1:

@mattdesl thanks, that seems to work! However, now I'm having issues with specifying a plugin. This works: budo src/app.ts:dist/app.js \ -d public -d . -d src \ --live -- \...

Same problem here. It works with jQuery versions up to 1.5.2, but starts failing with 1.6.0.

How to fix this bug: http://stackoverflow.com/a/11611363/284318 But anyways, I just realized this is already fixed in the current development version (even though the file is still called 1.0). So @mhayes,...

You probably need the binarraybuffer codec option: https://github.com/kawanet/msgpack-lite#custom-codec-options var codec = msgpack.createCodec({binarraybuffer: true}); ...then you need to pass the underlying buffer to msgpack-lite instead of the Uint8array directly.

Advanage of properly handling `Uint8Array` as `bin` type: When you have a `Uint8Array` which is a view into an `ArrayBuffer`, then you cannot simply pass `u8a.buffer` to msgpack, since then...