0.0.3 • Published 10 years ago

gobem-proc-concat v0.0.3

Weekly downloads
1
License
GPLv3
Repository
github
Last release
10 years ago

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
};