mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
2ca6acc1e9
npm v3.0+ by default dedupes node modules and stores them in a flat tree, which means the hardcoded path to the location.js will no longer be nested under the karma-phantomjs-launcher module. This fixes issue #2999.
42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
module.exports = function(config,grunt) {
|
|
'use strict';
|
|
|
|
grunt.registerTask('phantomjs', 'Copy phantomjs binary from node', function() {
|
|
|
|
var dest = './vendor/phantomjs/phantomjs';
|
|
var confDir = './node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/'
|
|
|
|
if (!grunt.file.exists(confDir)) {
|
|
// npm 3 or npm 2 with dedupe
|
|
confDir = './node_modules/phantomjs/lib/';
|
|
}
|
|
|
|
if (!grunt.file.exists(dest)){
|
|
|
|
var m=grunt.file.read(confDir+"location.js")
|
|
var src=/= \"([^\"]*)\"/.exec(m)[1];
|
|
|
|
if (!grunt.file.isPathAbsolute(src)) {
|
|
src = confDir+src;
|
|
}
|
|
|
|
var exec = require('child_process').execFileSync;
|
|
|
|
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')
|
|
}
|
|
|
|
} else {
|
|
grunt.log.writeln('Phantomjs already imported from node');
|
|
}
|
|
});
|
|
};
|