mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
49673c509d
when migrating from govendor to dep we broke the phantomjs rendering. ref #10602
38 lines
845 B
JavaScript
38 lines
845 B
JavaScript
module.exports = function(config,grunt) {
|
|
'use strict';
|
|
|
|
grunt.registerTask('phantomjs', 'Copy phantomjs binary to vendor/', function() {
|
|
|
|
var dest = './tools/phantomjs/phantomjs';
|
|
var confDir = './node_modules/phantomjs-prebuilt/lib/';
|
|
|
|
if (process.platform === "win32") {
|
|
dest += ".exe";
|
|
}
|
|
|
|
src = config.phjs
|
|
|
|
if (!src){
|
|
var m=grunt.file.read(confDir+"location.js")
|
|
var src=/= \"([^\"]*)\"/.exec(m)[1];
|
|
|
|
if (!grunt.file.isPathAbsolute(src)) {
|
|
src = confDir+src;
|
|
}
|
|
}
|
|
|
|
try {
|
|
grunt.config('copy.phantom_bin', {
|
|
src: src,
|
|
dest: dest,
|
|
options: { mode: true},
|
|
});
|
|
grunt.task.run('copy:phantom_bin');
|
|
} catch (err) {
|
|
grunt.verbose.writeln(err);
|
|
grunt.fail.warn('No working Phantomjs binary available')
|
|
}
|
|
|
|
});
|
|
};
|