gobem-proc-concat
v0.0.3
Published
Processor to concatenate files for gobem builder.
Downloads
3
Maintainers
Readme
gobem-proc-concat
This processor for gobem concatenates all files in a single one. By default the path of the output's file is concat.txt
, but you can change it in the first argument.
Example for build.js
module.exports = function () {
return [
['select', 0, /^components\/(\w+)\/\1\.js$/],
['gobem-proc-concat', 'bundle.js'],
['write', 1]
]; // this array will be used as build instructions
};