mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Fix npm 3 build failure in phantomjs task
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.
This commit is contained in:
parent
0a0a0776e4
commit
2ca6acc1e9
@ -6,6 +6,11 @@ module.exports = function(config,grunt) {
|
|||||||
var dest = './vendor/phantomjs/phantomjs';
|
var dest = './vendor/phantomjs/phantomjs';
|
||||||
var confDir = './node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/'
|
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)){
|
if (!grunt.file.exists(dest)){
|
||||||
|
|
||||||
var m=grunt.file.read(confDir+"location.js")
|
var m=grunt.file.read(confDir+"location.js")
|
||||||
|
Loading…
Reference in New Issue
Block a user