grafana/toolkit: improve CI task (#18189)

This commit is contained in:
Ryan McKinley
2019-08-03 12:34:02 -07:00
committed by GitHub
parent 32d6740b8f
commit d8f86834d9
33 changed files with 991 additions and 297 deletions

View File

@@ -2,7 +2,7 @@
"author": "Grafana Labs",
"license": "Apache-2.0",
"name": "@grafana/ui",
"version": "6.4.0-alpha.22",
"version": "6.4.0-alpha.44",
"description": "Grafana Components Library",
"keywords": [
"grafana",

View File

@@ -1,5 +1,5 @@
import React, { Component, createRef } from 'react';
import { omit } from 'lodash';
import omit from 'lodash/omit';
import { PopperController } from '../Tooltip/PopperController';
import { Popper } from '../Tooltip/Popper';
import { ColorPickerPopover, ColorPickerProps, ColorPickerChangeHandler } from './ColorPickerPopover';

View File

@@ -83,7 +83,12 @@ export interface PluginBuildInfo {
branch?: string;
hash?: string;
number?: number;
pr?: string;
pr?: number;
}
export interface ScreenshotInfo {
name: string;
path: string;
}
export interface PluginMetaInfo {
@@ -98,7 +103,7 @@ export interface PluginMetaInfo {
small: string;
};
build?: PluginBuildInfo;
screenshots: any[];
screenshots: ScreenshotInfo[];
updated: string;
version: string;
}