mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
Removes all references and usage of PhantomJS #23375. Remove direct link rendered image e2e smoke test for now. Docker: Fix installing chrome in ubuntu custom docker image. Improve handling of image renderer not available/installed #23593. Add PhantomJS breaking change and upgrading notes. Use grabpl v0.2.10. Closes #13802 Co-authored-by: Kyle Brandt <kyle@grafana.com> Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com> Co-authored-by: Diana Payton <52059945+oddlittlebird@users.noreply.github.com>
13 lines
206 B
JavaScript
13 lines
206 B
JavaScript
|
|
module.exports = function(grunt) {
|
|
"use strict";
|
|
|
|
// Concat and Minify the src directory into dist
|
|
grunt.registerTask('build', [
|
|
'clean:release',
|
|
'clean:build',
|
|
'exec:webpack',
|
|
]);
|
|
|
|
};
|