mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
new grunt task for setting phantomjs binary
This commit is contained in:
11
tasks/options/phantomjs.js
Normal file
11
tasks/options/phantomjs.js
Normal file
@@ -0,0 +1,11 @@
|
||||
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');
|
||||
}
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user