testeranto 0.233.0 → 0.233.2
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/bundle.js +2 -0
- package/package.json +1 -1
- package/src/server/serverClasses/index.tsx +1 -1
- package/src/viz.md +2 -2
package/bundle.js
CHANGED
|
@@ -17,6 +17,7 @@ await esbuild.build({
|
|
|
17
17
|
target: "node20",
|
|
18
18
|
outdir: "dist/prebuild",
|
|
19
19
|
packages: "external",
|
|
20
|
+
external: ['./src/server/serverClasses/index.tsx'],
|
|
20
21
|
// supported: {
|
|
21
22
|
// "dynamic-import": true,
|
|
22
23
|
// },
|
|
@@ -50,6 +51,7 @@ await esbuild.build({
|
|
|
50
51
|
"dynamic-import": true,
|
|
51
52
|
},
|
|
52
53
|
external: [
|
|
54
|
+
'./src/server/serverClasses/index.tsx',
|
|
53
55
|
"fs", "path", "child_process", "util", "os", "events", "stream",
|
|
54
56
|
"http", "https", "zlib", "crypto", "buffer", "net", "dns", "tls",
|
|
55
57
|
"assert", "querystring", "punycode", "readline", "repl", "vm",
|
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
renderTestDetails,
|
|
11
11
|
} from "testeranto/src/server/serverClasses/StakeholderUtils";
|
|
12
12
|
|
|
13
|
-
import { GraphData, Node, EisenhowerMatrix, GanttChart, KanbanBoard, TreeGraph } from "
|
|
13
|
+
import { GraphData, Node, EisenhowerMatrix, GanttChart, KanbanBoard, TreeGraph } from "grafeovidajo";
|
|
14
14
|
|
|
15
15
|
export interface StakeholderData {
|
|
16
16
|
documentation: {
|
package/src/viz.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
we use the
|
|
1
|
+
we use the grafeovidajo library to viusalize data which we present to the user through the[stakeholder app](src/serverClasses/index.tsx) the grafeovidajo library works by mapping graph data to a 2 screen.
|
|
2
2
|
|
|
3
|
-
Our index.html comes loaded with this graph data and
|
|
3
|
+
Our index.html comes loaded with this graph data and grafeovidajo handles it from there.
|
|
4
4
|
|
|
5
5
|
## graph
|
|
6
6
|
|