mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 04:41:50 +08:00

* webpack poc, this is not going to work for plugins, dam * tech: webpack and systemjs for plugins starting to work * tech: webpack and systemjs combo starting to work * tech: webpack + karma tests progress * tech: webpack + karma progress * tech: working on tests * tech: webpack * tech: webpack + karma, all tests pass * tech: webpack + karma, all tests pass * tech: webpack all tests pass * webpack: getting closer * tech: webpack progress * webpack: further build refinements * webpack: ng annotate fixes * webpack: optimized build fix * tech: minor fix for elasticsearch * tech: webpack + ace editor * tech: restored lodash move mixin compatability * tech: added enzyme react test and upgraded to react v16 * tech: package version fix * tech: added testdata to built in bundle * webpack: sass progress * tech: prod & dev build is working for the sass * tech: clean up unused grunt stuff and moved to scripts folder * tech: added vendor and manifest chunks, updated readme and docs * tech: webpack finishing touches
38 lines
846 B
JavaScript
38 lines
846 B
JavaScript
module.exports = function(config,grunt) {
|
|
'use strict';
|
|
|
|
grunt.registerTask('phantomjs', 'Copy phantomjs binary to vendor/', function() {
|
|
|
|
var dest = './vendor/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')
|
|
}
|
|
|
|
});
|
|
};
|