You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm attempting to concat my output from Browserify which contains an inline sourcemap. When doing this, I get an error "ENAMETOOLONG". My browserify output has the source map inline. It appears that concat task is attempting to read the source map from my working directory using the raw string found in my compiled browserify source map declaration:
I'm attempting to concat my output from Browserify which contains an inline sourcemap. When doing this, I get an error "ENAMETOOLONG". My browserify output has the source map inline. It appears that concat task is attempting to read the source map from my working directory using the raw string found in my compiled browserify source map declaration:
eg:
//# sourceMappingURL=data:application/json;charset:utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjp.....
So the concat task is attempting to read:
c:\myproject\data:application/json;charset:utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjp.....
Is this project not intended to use inline source maps?
The text was updated successfully, but these errors were encountered: