turn off minification. Start removing pretty much all code until you
get something to work. Add dependencies back in until it breaks. Then
report back.
For instance, if your "main" looked like:
- steal("foo","bar","zed", function(){
-
- ...LOTS OF CODE...
-
- })
make it look like:
- steal(function(){
- console.log("hello")
- })