Thorsten Lorenz

Results 126 comments of Thorsten Lorenz

Use [browserify](https://github.com/substack/node-browserify) with the [coffeeify](https://github.com/substack/coffeeify) transform. This will allow you to bundle all your files with sourcemaps preserved and allows debugging the original coffee script. [Working Demo](http://thlorenz.github.com/WebGLCraft/). This is compiled...

Technically you could pull the entire source of the bundle along with paths from the source maps. [mold-source-map](https://github.com/thlorenz/mold-source-map) and/or [convert-source-map](https://github.com/thlorenz/convert-source-map) would help you with that. Then add routes for each...

`b.on('file'...` may work, but I'm not sure how well it plays with transforms, since you'd need to run them manually if you use the original file content. This btw would...

I license past and future contributions under the dual MIT/Apache-2.0 license, allowing licensees to choose either at their option.

OK thanks for that info, so what we'd need to do is replace any emoj with a dash as well. Could you research how to detect any emoj in a...

Sounds good .. basically just add tests that assume it's doing all that and then make'em pass. Quite easy really :P main challenge how do you regex match emojis

Hope we can catch those as well .. don't have bandwidth to attack this myself, but maybe you can help (PRs appreciated). Also @mathiasbynens should be considered the emoji regexpert...

We need to ignore `[` and `]` from links it seems. Could you please confirm and provide a PR with a fix? Thanks.

Not sure if that would work. For one you'd get the final `})` even if `define` is not defined. Also that first line won't work, because you still get 'define...

Really good points. Resolving the `package.json` I'd actually opt for the one in the `cwd`, since we are trying to find the root package. The idea with resolving for entry...