I have this dep in my plugin "semver": "^5.1.0", but when running the app I get the semver specified in Kibana's package.json, namely "semver": "4.3.6". Because of a bug in semver my plugins fails.
I find this comment in the bundle built by Kibana:
// Use the define() function if we're in AMD land
which exists in 4.3.6, but not in 5.1.0.
We need to find a way to make sure plugins get the right versions of dependencies, otherwise I think we'll see lots of strange, subtle bugs.
I have this dep in my plugin
"semver": "^5.1.0", but when running the app I get thesemverspecified in Kibana'spackage.json, namely"semver": "4.3.6". Because of a bug in semver my plugins fails.I find this comment in the bundle built by Kibana:
which exists in 4.3.6, but not in 5.1.0.
We need to find a way to make sure plugins get the right versions of dependencies, otherwise I think we'll see lots of strange, subtle bugs.