Implemented scripts for building and releasing grafana/ui

This commit is contained in:
Dominik Prokop
2019-02-21 15:06:29 +01:00
parent 72e269c8f3
commit 529c1ea53d
17 changed files with 684 additions and 44 deletions
+7
View File
@@ -0,0 +1,7 @@
import ora from 'ora';
export const startSpinner = (label: string) => {
const spinner = new ora(label);
spinner.start();
return spinner;
};