Stephen Mathieson
Stephen Mathieson
At the moment, no, this isn't supported. The best you could do is turn off all compression options (e.g. [these things](https://github.com/stephenmathieson/node-obfuscator/blob/master/lib/utils.js#L55)). While adding support would be trivial, I'm hesitant as...
Hmm.. may be able to add it in at `obfuscator.register`, as it's aware of both the filename and its contents. I like the idea, as it would make locating bugs...
hmm, nope, i honestly haven't tried. because of node 0.11's instability, i usually run es6 stuff through [facebook/regenerator](https://github.com/facebook/regenerator) first anyway
hmm looks like we're loosing characters as `'\x5e\d\x2b\x24' == '^d+$'`. this is definitely a bug. as a quick fix (on your end), just pass a `RegExp` to `String#match` rather than...
i have only run acceptance tests after obfuscating a project. e.g. things that test the "app" directly, not its individual modules. > To avoid these headaches I was attempting to...
Looks like the DB isn't ready for connections yet. I'll take a look at it tomorrow morning.
Thanks for the invite (and `wait-port` tip)! I ended up spending all day Friday fixing a pretty scary security issue for work and didn't find any time to finish this....
Messed around and tried a couple things, but had no luck. Not sure what's going on in CI. I'll take another stab at this in the future.
Well, the `--standalone` option doesn't allow you to change the name of your modules, but it will build your modules in their own standalone file, using their `name` as what...
I believe this is doable with the current software, but you'll break away from the lowercase naming convention: ``` json { "name": "your-thing", "paths": ["lib"], "local": [ "Experiment", "ExperimentEdit", "ExperimentRender"...