function scriptPipeline()

in build-tools/scripts.js [45:51]


function scriptPipeline (config) {
    return f => Promise.resolve(f)
        .then(readContents)
        .then(config.preprocess)
        .then(stripLicenseHeader)
        .then(prependFileComment);
}