-
-
Notifications
You must be signed in to change notification settings - Fork 68
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
Usage from grunt-browserify not working #29
Comments
Got it working. var fs = require('fs'); But this doesnt work: var foo ='bar',
fs = require('fs'); |
@substack - I too am experiencing this error, however the fix proposed by @BlackSonic only resulted in a new error being raised:
|
Depressingly enough downgrading all the way to [email protected] resolved the issue. As a separate problem, it would appear that brfs doesn't work when fs is passed as a reference into functions. |
Thanks for this great tool! I had the same issue as blacksonic: Works var fs = require('fs');
var insertCss = require('insert-css'); Doesn't work var fs = require('fs'),
insertCss = require('insert-css'); |
I've also run into this issue, using the straight |
I tried to use it from grunt but when i require 'fs' start getting the following error:
Any idea where doe it come from?
The text was updated successfully, but these errors were encountered: