Skip to content

Commit 2947402

Browse files
authored
Merge pull request #678 from GraphScope/bugfix-dpes
chore: Remove unused dependencies
2 parents 4ecd645 + 623e479 commit 2947402

File tree

29 files changed

+126
-140
lines changed

29 files changed

+126
-140
lines changed

examples/graphy/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @graphscope/graphy-website
22

3+
## 0.1.10
4+
5+
### Patch Changes
6+
7+
- update website
8+
- Updated dependencies
9+
- @graphscope/studio-components@0.1.16
10+
- @graphscope/studio-importor@0.1.16
11+
- @graphscope/studio-driver@0.1.14
12+
- @graphscope/studio-graph@0.1.16
13+
- @graphscope/studio-query@0.1.16
14+
315
## 0.1.9
416

517
### Patch Changes

examples/graphy/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphscope/graphy-website",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"description": "",
55
"main": "lib/index.js",
66
"module": "es/index.js",

packages/studio-components/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphscope/studio-components
22

3+
## 0.1.16
4+
5+
### Patch Changes
6+
7+
- update website
8+
39
## 0.1.15
410

511
### Patch Changes

packages/studio-components/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphscope/studio-components",
3-
"version": "0.1.15",
3+
"version": "0.1.16",
44
"description": "A components for graphscope studio",
55
"main": "lib/index.js",
66
"module": "es/index.js",
@@ -27,7 +27,6 @@
2727
"react-intl": "^6.6.1",
2828
"react-resizable-panels": "^2.0.20",
2929
"react-router-dom": "^6.26.1",
30-
"sql-ddl-to-json-schema": "latest",
3130
"typewriter-effect": "^2.21.0",
3231
"uuid": "latest",
3332
"uuidv4": "latest"

packages/studio-components/src/ImportFiles/update-file.tsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react';
22
import { Space, Tooltip, Upload, Button, message, notification } from 'antd';
33
import type { UploadProps } from 'antd';
44
import { InboxOutlined } from '@ant-design/icons';
5-
import { parseCSV, parseJSON, parseSQL } from '../Utils';
5+
import { parseCSV, parseJSON } from '../Utils';
66
import type { IImportFromFileProps } from './index';
77
import { ParsedFile } from '../Utils/parseCSV';
88
const { Dragger } = Upload;
@@ -27,10 +27,6 @@ const UploadFile = ({ onChange, accept, title, description, isSaveFiles }: IProp
2727
const files = await parseCSV(file as File);
2828
onChange && onChange([files], csvFiles as File[]);
2929
}
30-
if (type === '') {
31-
const files = await parseSQL(file as File);
32-
onChange && onChange(files);
33-
}
3430
} catch (error) {
3531
console.error('解析文件失败:', error);
3632
}

packages/studio-components/src/Utils/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export {
231231
} from './parseCSV';
232232
export { inferredGraphFields } from './inferredGraphFields';
233233
export { parseJSON } from './parseJSON';
234-
export { parseSQL } from './parseSQL';
234+
235235
export { extractProperties } from './inferredSchema';
236236
export { handleExpand, uniqueElementsBy } from './expand';
237237
export { transSchema } from './transSchema';

packages/studio-components/src/Utils/parseSQL.tsx

Lines changed: 0 additions & 56 deletions
This file was deleted.

packages/studio-draw-pattern/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @graphscope/studio-draw-pattern
22

3+
## 0.0.12
4+
5+
### Patch Changes
6+
7+
- update website
8+
- Updated dependencies
9+
- @graphscope/studio-components@0.1.16
10+
- @graphscope/studio-graph-editor@0.1.10
11+
312
## 0.0.11
413

514
### Patch Changes

packages/studio-draw-pattern/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphscope/studio-draw-pattern",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "Experiment draw pattern code for GrapeScope",
55
"module": "dist/esm/index.js",
66
"types": "dist/esm/index.d.ts",

packages/studio-driver/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @graphscope/studio-driver
22

3+
## 0.1.14
4+
5+
### Patch Changes
6+
7+
- update website
8+
39
## 0.1.13
410

511
### Patch Changes

0 commit comments

Comments
 (0)