-
Notifications
You must be signed in to change notification settings - Fork 416
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RequireJS and angular #18
Comments
Thanks! This seems related to #17 also reported this morning. |
Referred to main branch SheetJS#339 |
@araymer Might you have a test case I can use to verify? Even a snippet is helpful, need not be a complete mocha test. Any suggestion why strings were broken, e.g.
|
Honestly, I have no idea why the strings weren't written contiguously for the require methods. I kept it as such out of caution. In my mind, it seems like it shouldn't make a difference. As for a test case: I don't, sorry. I made the change on the project I was working on and just kinda went with it because it seemed to work fine (we were using bower, requireJS and angularJS with a .net backend. So, no node support beyond the build, but still needed modularity.) |
I guess that this was an optimization to avoid loading of jszip if it is included into document already. The problem is that module loaders like System.js parses such files statically to find dependencies but they don't do event primitive code evaluation inside Fixing this would be very helpful. |
I'd be happy to make a pull request that concatenates these strings, if it would be accepted. |
Are you able to run the test suite? |
@pietersv Yes, this is the final output when I run This is for a clean clone of the repo. |
@mattbasta That's awesome. May I ask how you were able to run these, what Node version? On a clean clone of the root project on Node 4.1.1 I get 937 failed tests. |
We are using 0.10. I used the instructions in the readme. |
So this bit of code:
Does not take into account if you are using requireJS without node. So you have modularity, the first if statement will not assign JSZip, but you're not using node, so the second if statement will not require properly, either. I suggest adding a default jszip = require('jszip') or changing the if/else logic a bit to allow for this.
So, maybe:
The text was updated successfully, but these errors were encountered: