mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
grafana/toolkit: improve CI task (#18189)
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user