grunt-contrib-concat icon indicating copy to clipboard operation
grunt-contrib-concat copied to clipboard

Concatenate files.

Results 41 grunt-contrib-concat issues
Sort by recently updated
recently updated
newest added

I added a new config property: displayLog (true/false) This is to enable/disable the log "File xxxxx created", since it can be too verbose when we have many files. I also...

See https://github.com/substack/node-browserify/issues/753 Inline source map need add charset to work with chinese Maybe https://github.com/gruntjs/grunt-contrib-concat/pull/167 also need to be merged Ping @shama

this allows to set a sourceRoot within the sourcemap

browserify since version 12.0.0 uses '=' instead of ':' in sourcemap charset see https://github.com/substack/node-browserify/blob/master/changelog.markdown#1200 changed the sourcemap regexp to allow both characters **:** and **=**

Resolves: #159 This will take sourceRoot property into consideration, and also read sources if the sourceContent property is not set. Please let me know if there are any other places...

Added createEmptyFiles option (default = true). If it is set to false, it prevents creating an empty file if - no src file is found - all src files are...

The default is set as true. This is so a user has a choice between verbose or just seeing that the file has been created and dosent't want to see...

When ingesting sourcemaps, sometimes the file location has moved, and this is usually indicated using the sourceRoot property which shows where the original base directory was. By checking for that...

Previously, specifying `nonull: true` would only cause the task to log a warning about a file being missing. This change modifies the task to issue a "real" warning and abort...

Hi, I'm using grunt-contrib-concat and have a question: Is there some way to map line numbers from an error stack trace back to the line number in the original source...