Skip to content

Commit 1bb505b

Browse files
committed
fix(hubble): merge conflict and add yarn resolutions
Resolved a merge conflict in convertStringToJSON.js and removed unrelated Java code. Added a 'resolutions' field for 'pretty-format' in package.json to address dependency versioning. yarn.lock added to track dependencies.
1 parent 7fbe313 commit 1bb505b

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

hugegraph-hubble/hubble-fe/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,8 @@
7676
"eslint": "^8.19.0",
7777
"eslint-plugin-react": "^7.30.1",
7878
"resize-observer-polyfill": "^1.5.1"
79+
},
80+
"resolutions": {
81+
"pretty-format": "^28.1.3"
7982
}
8083
}

hugegraph-hubble/hubble-fe/src/utils/convertStringToJSON.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
* under the License.
1717
*/
1818

19-
<<<<<<<< HEAD:hugegraph-hubble/hubble-fe/src/utils/convertStringToJSON.js
2019
export default function convertStringToJSON(text) {
2120
if (typeof text !== 'string') {
2221
return null;
@@ -31,13 +30,4 @@ export default function convertStringToJSON(text) {
3130
}
3231

3332
return typeof context === 'object' && context !== null ? context : null;
34-
========
35-
package org.apache.hugegraph.structure.space;
36-
37-
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
38-
39-
@JsonIgnoreProperties
40-
public class StorageService {
41-
42-
>>>>>>>> master:hugegraph-client/src/main/java/org/apache/hugegraph/structure/space/StorageService.java
4333
}

0 commit comments

Comments
 (0)