initial commit
generated from the plugin template, this does nothing but provide a plugin with the expected name
This commit is contained in:
18
gather-info.js
Normal file
18
gather-info.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const templatePkg = require('./package.json');
|
||||
const kibanaPkg = require('../kibana/package.json');
|
||||
|
||||
const debugInfo = {
|
||||
kibana: {
|
||||
version: kibanaPkg.version,
|
||||
build: kibanaPkg.build,
|
||||
engines: kibanaPkg.engines,
|
||||
},
|
||||
plugin: {
|
||||
name: templatePkg.name,
|
||||
version: templatePkg.version,
|
||||
kibana: templatePkg.kibana,
|
||||
dependencies: templatePkg.dependencies,
|
||||
},
|
||||
};
|
||||
|
||||
console.log(debugInfo);
|
||||
Reference in New Issue
Block a user