File tree Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Expand file tree Collapse file tree 4 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 11# @graphscope/neug-query
22
3+ ## 0.2.1
4+
5+ ### Patch Changes
6+
7+ - update neug-query build way publish
8+
39## 0.2.0
410
511### Minor Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @graphscope/neug-query" ,
3- "version" : " 0.2.0 " ,
3+ "version" : " 0.2.1 " ,
44 "description" : " Neug Query - A standalone query interface for GraphScope" ,
55 "main" : " lib/index.js" ,
66 "module" : " es/index.js" ,
2222 },
2323 "scripts" : {
2424 "start" : " father dev" ,
25- "build" : " father build && npm run build:site:single " ,
25+ "build" : " father build && npm run build:site" ,
2626 "build:lib" : " father build" ,
2727 "start:site" : " vite dev" ,
2828 "build:site" : " NODE_OPTIONS='--max-old-space-size=8192' vite build" ,
Original file line number Diff line number Diff line change @@ -32,10 +32,6 @@ export class QueryService {
3232 async queryGraphData ( params : IStatement ) {
3333 // 首先保存到历史记录
3434 await this . createStatements ( 'history' , params ) ;
35- const _params = {
36- script : params . script ,
37- language : 'cypher' ,
38- } ;
3935 try {
4036 const response = await fetch ( `${ this . apiBaseUrl } /cypherv2` , {
4137 method : 'POST' ,
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ export default defineConfig(({ mode }) => {
5252 router : [ 'react-router-dom' ] ,
5353 antd : [ 'antd' ] ,
5454 } ,
55- entryFileNames : 'assets/[name].[hash]. js' ,
56- chunkFileNames : 'assets/[name].[hash]. js' ,
57- assetFileNames : 'assets/[name].[hash].[ ext]' ,
55+ entryFileNames : 'assets/[name].js' ,
56+ chunkFileNames : 'assets/[name].js' ,
57+ assetFileNames : 'assets/[name].[ext]' ,
5858 } ,
5959 // 增大 chunk 大小警告阈值
6060 onwarn ( warning , warn ) {
You can’t perform that action at this time.
0 commit comments