directed-graph-typed 1.37.4 → 1.37.6

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.d.ts CHANGED
@@ -5,4 +5,6 @@
5
5
  * @copyright Copyright (c) 2022 Tyler Zeng <zrwusa@gmail.com>
6
6
  * @license MIT License
7
7
  */
8
- export * from 'data-structure-typed';
8
+ export * from 'data-structure-typed/src/data-structures/graph/directed-graph';
9
+ export * from 'data-structure-typed/src/types/data-structures/graph/directed-graph';
10
+ export * from 'data-structure-typed/src/types/helpers';
package/dist/index.js CHANGED
@@ -22,4 +22,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
22
22
  * @license MIT License
23
23
  */
24
24
  // export { DirectedVertex, DirectedEdge, DirectedGraph } from 'data-structure-typed';
25
- __exportStar(require("data-structure-typed"), exports);
25
+ __exportStar(require("data-structure-typed/src/data-structures/graph/directed-graph"), exports);
26
+ __exportStar(require("data-structure-typed/src/types/data-structures/graph/directed-graph"), exports);
27
+ __exportStar(require("data-structure-typed/src/types/helpers"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directed-graph-typed",
3
- "version": "1.37.4",
3
+ "version": "1.37.6",
4
4
  "description": "Directed Graph. Javascript & Typescript Data Structure.",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -146,6 +146,6 @@
146
146
  "typescript": "^4.9.5"
147
147
  },
148
148
  "dependencies": {
149
- "data-structure-typed": "^1.37.4"
149
+ "data-structure-typed": "^1.37.6"
150
150
  }
151
151
  }
package/src/index.ts CHANGED
@@ -6,4 +6,6 @@
6
6
  * @license MIT License
7
7
  */
8
8
  // export { DirectedVertex, DirectedEdge, DirectedGraph } from 'data-structure-typed';
9
- export * from 'data-structure-typed';
9
+ export * from 'data-structure-typed/src/data-structures/graph/directed-graph';
10
+ export * from 'data-structure-typed/src/types/data-structures/graph/directed-graph';
11
+ export * from 'data-structure-typed/src/types/helpers';