@hpcc-js/wasm-graphviz 1.3.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +6 -7
- package/src/graphviz.ts +1 -1
- package/types/graphviz.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/wasm-graphviz",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "hpcc-js - WASM Graphviz",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -26,12 +26,11 @@
|
|
|
26
26
|
"build-dev": "run-p build-types build-ts-dev",
|
|
27
27
|
"build": "run-p build-types build-ts",
|
|
28
28
|
"lint-skypack": "npx -y @skypack/package-check",
|
|
29
|
-
"lint-eslint": "eslint src/**/*.ts",
|
|
29
|
+
"lint-eslint": "eslint src/**/*.ts spec/*.ts",
|
|
30
30
|
"lint": "run-p lint-eslint",
|
|
31
|
-
"test-
|
|
32
|
-
"test-
|
|
33
|
-
"test
|
|
34
|
-
"test": "run-s test-chrome test-node",
|
|
31
|
+
"test-browser": "jasmine-browser-runner runSpecs",
|
|
32
|
+
"test-node": "jasmine",
|
|
33
|
+
"test": "run-s test-node test-browser",
|
|
35
34
|
"update": "npx -y npm-check-updates -u -t minor",
|
|
36
35
|
"update-major": "npx -y npm-check-updates -u"
|
|
37
36
|
},
|
|
@@ -51,5 +50,5 @@
|
|
|
51
50
|
},
|
|
52
51
|
"homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
|
|
53
52
|
"license": "Apache-2.0",
|
|
54
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "6f97b7b407abb2635e1cd68a4f4343581906d42c"
|
|
55
54
|
}
|
package/src/graphviz.ts
CHANGED
|
@@ -4,7 +4,7 @@ import load, { reset } from "../../../build/packages/graphviz/src-cpp/graphvizli
|
|
|
4
4
|
/**
|
|
5
5
|
* Various graphic and data formats for end user, web, documents and other applications. See [Output Formats](https://graphviz.gitlab.io/docs/outputs/) for more information.
|
|
6
6
|
*/
|
|
7
|
-
export type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext";
|
|
7
|
+
export type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" | "canon";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* Various algorithms for projecting abstract graphs into a space for visualization. See [Layout Engines](https://graphviz.gitlab.io/docs/layouts/) for more details.
|
package/types/graphviz.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Various graphic and data formats for end user, web, documents and other applications. See [Output Formats](https://graphviz.gitlab.io/docs/outputs/) for more information.
|
|
3
3
|
*/
|
|
4
|
-
export type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext";
|
|
4
|
+
export type Format = "svg" | "dot" | "json" | "dot_json" | "xdot_json" | "plain" | "plain-ext" | "canon";
|
|
5
5
|
/**
|
|
6
6
|
* Various algorithms for projecting abstract graphs into a space for visualization. See [Layout Engines](https://graphviz.gitlab.io/docs/layouts/) for more details.
|
|
7
7
|
*/
|