Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@elastic/plugin-helpers

Package Overview
Dependencies
Maintainers
18
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@elastic/plugin-helpers - npm Package Compare versions

Comparing version 8.1.0 to 8.1.1

14

lib/config_file.js

@@ -27,2 +27,16 @@ const resolve = require('path').resolve;

const deprecationMsg = 'has been deprecated and is removed in the next ' +
'major version of `@elastic/plugin-helpers`.\n'
if (config.kibanaRoot) {
process.stdout.write(
'WARNING: The `kibanaRoot` config option ' + deprecationMsg
);
}
if (process.env.KIBANA_ROOT) {
process.stdout.write(
'WARNING: The `KIBANA_ROOT` environment variable ' + deprecationMsg
);
}
// use resolve to ensure correct resolution of paths

@@ -29,0 +43,0 @@ const { kibanaRoot, includePlugins } = config;

2

package.json
{
"name": "@elastic/plugin-helpers",
"version": "8.1.0",
"version": "8.1.1",
"description": "Just some helpers for kibana plugin devs.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -51,4 +51,13 @@ # kibana-plugin-helpers

------- | -----------
`kibanaRoot` | Path to your checkout of Kibana, relative paths are ok
`kibanaRoot` | DEPRECATED. Path to your checkout of Kibana, relative paths are ok.
In the next major version of the plugin helpers the `kibanaRoot` setting can no longer be specified, and plugins must be located within the sibling `kibana-extra` folder, for example:
```sh
.
├── kibana
├── kibana-extra/foo-plugin
└── kibana-extra/bar-plugin
```
### Settings for `start`

@@ -55,0 +64,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc