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?