You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
angularjs-batarang/scripts/inline.js

40 lines
1.3 KiB
JavaScript

/**
* This file takes all of the files in 'content-scripts/' and concats
* then into one file. This so that only one file will need to be
* injected into the content of a page.
*
* You will need to run 'grunt inline' to build the new 'inject.build.js'
*/
var fs = require('fs');
var r = new RegExp("( *)(.*?)require\\('(.+?)'\\)", 'g');
module.exports = function () {
var debug = fs.readFileSync(__dirname + '/../content-scripts/inject.js', 'utf8');
var out = debug.replace(r, function (match, whitespace, before, file) {
return whitespace + '// exported from ' + file + '\n' +
whitespace + before + ex(whitespace, file);
});
fs.writeFileSync(__dirname + '/../content-scripts/inject.build.js', out);
};
// takes the contents of a file, wraps it in a closure
// and returns the result
function ex (whitespace, file) {
var contents = fs.readFileSync(__dirname + '/../content-scripts/' + file, 'utf8');
contents = contents.replace('module.exports = ', 'return ');
contents = ['(function () {'].
concat(contents.split('\n').
map(function (line) {
return ' ' + line;
}).
concat(['}())']).
map(function (line) {
return whitespace + line;
})).join('\n');
return contents;
}