mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
* Fix paths for kibana packages in prepare_project_dependencies(#40858). * Dist/index.js after yarn build. * chore(NA): correctly include kbm pm new dist file * Commit after cherry-pick 985c85c from recreation branch. Co-authored-by: Tiago Costa <tiagoffcc@hotmail.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: Shailesh cheke <shailesh.cheke@gmail.com> Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
1de83bd387
commit
e1fdb21863
3 changed files with 3 additions and 3 deletions
2
packages/kbn-pm/dist/index.js
vendored
2
packages/kbn-pm/dist/index.js
vendored
|
@ -108545,7 +108545,7 @@ __webpack_require__.r(__webpack_exports__);
|
|||
* to Kibana itself.
|
||||
*/
|
||||
|
||||
const isKibanaDep = depVersion => depVersion.includes('../../kibana/');
|
||||
const isKibanaDep = depVersion => depVersion.includes('../../packages/');
|
||||
/**
|
||||
* This prepares the dependencies for an _external_ project.
|
||||
*/
|
||||
|
|
|
@ -2,6 +2,6 @@
|
|||
"name": "quux",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"@kbn/foo": "link:../../kibana/packages/foo"
|
||||
"@kbn/foo": "link:../../packages/foo"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,7 +25,7 @@ import { Project } from '../utils/project';
|
|||
* to the Kibana root directory or `../kibana-extra/{plugin}` relative
|
||||
* to Kibana itself.
|
||||
*/
|
||||
const isKibanaDep = (depVersion: string) => depVersion.includes('../../kibana/');
|
||||
const isKibanaDep = (depVersion: string) => depVersion.includes('../../packages/');
|
||||
|
||||
/**
|
||||
* This prepares the dependencies for an _external_ project.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue