mirror of
https://github.com/grafana/grafana.git
synced 2025-07-31 07:52:21 +08:00
11 lines
442 B
JavaScript
11 lines
442 B
JavaScript
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');
|
|
}
|
|
});
|
|
}; |