@elastic.io/component-build-helper
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -14,3 +14,4 @@ #!/usr/bin/env node | ||
}; | ||
await (0, metaloader_1.validateComponentJSON)(getFileFunction); | ||
const componentJson = await (0, metaloader_1.validateComponentJSON)(getFileFunction); | ||
console.log(JSON.stringify(componentJson)); | ||
} | ||
@@ -17,0 +18,0 @@ ; |
@@ -30,2 +30,5 @@ export interface Field { | ||
useOAuthClient: boolean; | ||
icon: string; | ||
sailor_version?: string; | ||
service?: string; | ||
} |
{ | ||
"name": "@elastic.io/component-build-helper", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Helpers for the component build process", | ||
@@ -5,0 +5,0 @@ "main": "dist/src/index.js", |
@@ -15,3 +15,4 @@ #!/usr/bin/env node | ||
}; | ||
await validateComponentJSON(getFileFunction); | ||
const componentJson = await validateComponentJSON(getFileFunction); | ||
console.log(JSON.stringify(componentJson)); | ||
}; | ||
@@ -18,0 +19,0 @@ |
@@ -28,2 +28,6 @@ export interface Field { | ||
useOAuthClient: boolean; | ||
icon: string; | ||
// eslint-disable-next-line camelcase | ||
sailor_version?: string; | ||
service?: string; | ||
} |
Sorry, the diff of this file is not supported yet
59581
1306