Skip to content

Commit 4102466

Browse files
committed
chore: update pack
1 parent f86b1b2 commit 4102466

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

__tests__/unit/gaddi.spec.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2130,14 +2130,14 @@ describe('Performance: 1589 nodes G', () => {
21302130
'cluster',
21312131
'cluster'
21322132
);
2133-
console.log(
2134-
'1589 nodes graph matching 6 nodes full-connected pattern',
2135-
performance.now() - begin,
2136-
result.length
2137-
);
2138-
result.forEach((re) => {
2139-
console.log(JSON.stringify(re));
2140-
});
2133+
// console.log(
2134+
// '1589 nodes graph matching 6 nodes full-connected pattern',
2135+
// performance.now() - begin,
2136+
// result.length
2137+
// );
2138+
// result.forEach((re) => {
2139+
// console.log(JSON.stringify(re));
2140+
// });
21412141
});
21422142
});
21432143

packages/graph-gpu/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@antv/graph-gpu",
3-
"version": "1.0.0",
3+
"version": "0.2.0",
44
"description": "provide common graph algorithms implemented with WebGPU",
55
"keywords": [
66
"webgpu",
@@ -25,7 +25,7 @@
2525
"types": "lib/index.d.ts",
2626
"unpkg": "dist/index.min.js",
2727
"scripts": {
28-
"build": "npm run clean && npm run build:esm && npm run build:umd",
28+
"build": "npm run clean && npm run build:esm",
2929
"build:esm": "tsc",
3030
"build:umd": "webpack --config webpack.config.js --mode production",
3131
"dev:umd": "webpack --config webpack.dev.config.js --mode development",

packages/graph-wasm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@antv/graph-wasm",
3-
"version": "0.0.1",
3+
"version": "0.2.0",
44
"description": "A WASM binding of rust implementation for graph algorithms.",
55
"license": "MIT",
66
"repository": {
@@ -30,7 +30,7 @@
3030
"build:wasm": "run-p build:wasm-st build:wasm-mt build:wasm-node",
3131
"build:esm": "tsc",
3232
"build:umd": "webpack --config webpack.config.js --mode production",
33-
"build": "npm run clean && npm run build:wasm && npm run build:esm && npm run build:umd",
33+
"build": "npm run clean",
3434
"clean": "rimraf dist pkg pkg-parallel pkg-node"
3535
},
3636
"dependencies": {

packages/graph/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"scripts": {
2323
"clean": "rimraf dist lib",
2424
"dev": "webpack --config webpack.dev.config.js --mode development",
25-
"build": "npm run clean && npm run build:esm && npm run build:umd",
25+
"build": "npm run clean && npm run build:esm",
2626
"build:ci": "npm run build",
2727
"build:esm": "tsc",
2828
"build:umd": "webpack --config webpack.config.js --mode production",

0 commit comments

Comments
 (0)