fix(CI): update CI build

This commit is contained in:
2018-09-01 16:40:42 +02:00
parent fa0d5af74e
commit 79a3420aa5
10 changed files with 175 additions and 427 deletions

View File

@@ -1,25 +1,24 @@
export interface ISearchObject {
// name
name?: string
name?: string;
// metadata
author?: string
maintainer?: string
scope?: string
keywords?: string[]
author?: string;
maintainer?: string;
scope?: string;
keywords?: string[];
// status
deprecated?: boolean
unstable?: boolean
insecure?: boolean
deprecated?: boolean;
unstable?: boolean;
insecure?: boolean;
// search behaviour
boostExact?: boolean
scoreEffect?: number
boostExact?: boolean;
scoreEffect?: number;
// Analytics
qualityWeight?: number
popularityWeight?: number
maintenanceWeight?: number
qualityWeight?: number;
popularityWeight?: number;
maintenanceWeight?: number;
}