This is an automated email from the ASF dual-hosted git repository.
marat pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git
The following commit(s) were added to refs/heads/main by this push:
new cdef7526 Fix VSCode build fail
cdef7526 is described below
commit cdef752662790ea38beeadb850d188546bf686bb
Author: Marat Gubaidullin <[email protected]>
AuthorDate: Thu Sep 19 13:05:54 2024 -0400
Fix VSCode build fail
---
karavan-core/package-lock.json | 6 +++---
karavan-core/src/core/api/CamelDefinitionApiExt.ts | 2 --
2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/karavan-core/package-lock.json b/karavan-core/package-lock.json
index 27a710f3..d46b2b1e 100644
--- a/karavan-core/package-lock.json
+++ b/karavan-core/package-lock.json
@@ -922,9 +922,9 @@
}
},
"node_modules/micromatch": {
- "version": "4.0.7",
- "resolved":
"https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz",
- "integrity":
"sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==",
+ "version": "4.0.8",
+ "resolved":
"https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
+ "integrity":
"sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"dev": true,
"dependencies": {
"braces": "^3.0.3",
diff --git a/karavan-core/src/core/api/CamelDefinitionApiExt.ts
b/karavan-core/src/core/api/CamelDefinitionApiExt.ts
index a9de937a..68cb46d6 100644
--- a/karavan-core/src/core/api/CamelDefinitionApiExt.ts
+++ b/karavan-core/src/core/api/CamelDefinitionApiExt.ts
@@ -25,8 +25,6 @@ import {
} from '../model/CamelDefinition';
import { Beans, CamelElement, CamelElementMeta, Integration } from
'../model/IntegrationDefinition';
import { CamelDefinitionApi } from './CamelDefinitionApi';
-import { graphlib } from 'dagre';
-import floydWarchall = graphlib.alg.floydWarchall;
export class ChildElement {
constructor(public name: string = '', public className: string = '',
public multiple: boolean = false) {}