Created
September 17, 2017 17:25
-
-
Save backflip/5cfce24df113e1522cc92d40e1536c81 to your computer and use it in GitHub Desktop.
Grunt: Resolve sprockets-like directives in files and concatenate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs') | |
var path = require('path') | |
module.exports = function (grunt) { | |
grunt.initConfig({ | |
concat: { | |
dist: { | |
src: (function (file) { | |
var fileCache = [] | |
function getFiles (targetFilePath) { | |
var pattern = /\* @requires [\s-]*(.*\.js)/g | |
var files = [] | |
var content | |
var match | |
var filePath | |
var dependencies | |
// Skip if already added to dependencies | |
if (fileCache.includes(targetFilePath)) { | |
return false | |
} else { | |
fileCache.push(targetFilePath) | |
} | |
// Read content | |
content = fs.readFileSync(targetFilePath) | |
// Find file references | |
while (match = pattern.exec(content)) { | |
filePath = path.join(path.dirname(targetFilePath), match[1]) | |
// Check existence | |
if (!fs.existsSync(filePath)) { | |
continue | |
} | |
// Get dependencies | |
while (dependencies = getFiles(filePath)) { | |
files = files.concat(dependencies) | |
} | |
} | |
// Add file itself | |
files.push(targetFilePath) | |
return files | |
} | |
return getFiles(file) | |
})('src/project.js'), | |
dest: 'dist/built.js' | |
} | |
} | |
}) | |
grunt.loadNpmTasks('grunt-contrib-concat') | |
grunt.registerTask('default', ['concat']) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment