Matt DesLauriers

Results 224 comments of Matt DesLauriers

Also seeing this issue. I have `npm config prefix` set to a different path and `npm install -g` doesn't seem to solve this. For the record, Beefy might be able...

If you can't get it to work @mark-hahn you may have better luck with one of these tools: https://github.com/mattdesl/budo https://github.com/maxogden/wzrd

We also just ran into this issue on Windows. We had a folder structure like this: ``` project node_modules app index.html src/main.js ``` And we were running beefy from within...

Also experiencing this on OSX 10.8.5 MacBookPro. Local install of beefy + browserify fixes it.

I am currently exploring this for a toolkit I'm building on top of esbuild, and here's how I'm handling it: - Use `{ write: false, metafile: true }` to get...

For reference to anyone who stumbles on this later, here is how I've implemented it in [my own library](github.com/mattdesl/vecmath). ``` js /** * Multiplies this Vector3 by the specified matrix,...

Here's a link to the file: https://drive.google.com/file/d/14LsSdtVxrxzvc09oNo74OcZutMCcJI7D/view?usp=sharing I think you are right, I'm just testing a few more options (changing qp_min and qp_max, and desired_frame_bytes, vbv_size_bytes) and I'm able to...

I would assume just return Error in first callback, maybe with a code that can be used to identify the issue? Or: just leave it as is but document it...

In my very crude test, I just commented out all the functionality of syntax-error and then re-bundled with watchify. It still seems to catch syntax errors and print them exactly...

Woah @zertosh amazing work. :clap: I just tested your branch and also removed syntax-error from the pipeline, and my 800ms re-bundle time is down to 140ms.