Commit 8134905a by fg2it

new grunt task for setting phantomjs binary

parent 45fb760a
module.exports = function(config,grunt) {
'use strict';
grunt.registerTask('phantomjs', 'Copy phantomjs binary from node', function() {
var m=grunt.file.read("./node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/location.js")
var p=/= \"([^\"]*)\"/.exec(m);
if (grunt.file.exists(p[1])) {
grunt.log.writeln('Using '+ p[1]);
grunt.file.copy(p[1],'vendor/phantomjs/phantomjs');
}
});
};
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment