ts-graphviz 1.0.0-1 → 1.0.0-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/lib/ast/index.cjs +2 -2
- package/lib/ast/index.d.ts +1 -1
- package/lib/ast/index.js +2 -2
- package/lib/core/index.cjs +2 -2
- package/lib/core/index.d.ts +2 -2
- package/lib/core/index.js +2 -2
- package/lib/index.cjs +2 -2
- package/lib/index.d.ts +2 -2
- package/lib/index.js +2 -2
- package/package.json +2 -2
- package/tsconfig.build.json +0 -8
package/lib/ast/index.cjs
CHANGED
package/lib/ast/index.d.ts
CHANGED
package/lib/ast/index.js
CHANGED
package/lib/core/index.cjs
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var common = require('
|
|
6
|
-
var ast = require('
|
|
5
|
+
var common = require('#lib/common');
|
|
6
|
+
var ast = require('#lib/ast');
|
|
7
7
|
|
|
8
8
|
const attribute = new Proxy(Object.freeze({}), {
|
|
9
9
|
get: (_, key) => key,
|
package/lib/core/index.d.ts
CHANGED
|
@@ -27,8 +27,8 @@ import {
|
|
|
27
27
|
RootGraphModel,
|
|
28
28
|
GraphAttributesObject,
|
|
29
29
|
DotObjectModel,
|
|
30
|
-
} from '
|
|
31
|
-
import { ConvertOptions, PrintOptions } from '
|
|
30
|
+
} from '#lib/common';
|
|
31
|
+
import { ConvertOptions, PrintOptions } from '#lib/ast';
|
|
32
32
|
|
|
33
33
|
interface AttributeKeyDict {
|
|
34
34
|
/**
|
package/lib/core/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { isNodeRefGroupLike, toNodeRefGroup, toNodeRef, isNodeRefLike } from '
|
|
2
|
-
import { fromModel, stringify } from '
|
|
1
|
+
import { isNodeRefGroupLike, toNodeRefGroup, toNodeRef, isNodeRefLike } from '#lib/common';
|
|
2
|
+
import { fromModel, stringify } from '#lib/ast';
|
|
3
3
|
|
|
4
4
|
const attribute = new Proxy(Object.freeze({}), {
|
|
5
5
|
get: (_, key) => key,
|
package/lib/index.cjs
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var common = require('
|
|
6
|
-
var core = require('
|
|
5
|
+
var common = require('#lib/common');
|
|
6
|
+
var core = require('#lib/core');
|
|
7
7
|
|
|
8
8
|
Object.keys(common).forEach(function (k) {
|
|
9
9
|
if (k !== 'default' && !exports.hasOwnProperty(k))
|
package/lib/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from '
|
|
1
|
+
export * from '#lib/common';
|
|
2
|
+
export * from '#lib/core';
|
package/lib/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from '
|
|
2
|
-
export * from '
|
|
1
|
+
export * from '#lib/common';
|
|
2
|
+
export * from '#lib/core';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-graphviz",
|
|
3
|
-
"version": "1.0.0-
|
|
3
|
+
"version": "1.0.0-2",
|
|
4
4
|
"author": "kamiazya <yuki@kamiazya.tech>",
|
|
5
5
|
"description": "Graphviz library for TypeScript.",
|
|
6
6
|
"homepage": "https://ts-graphviz.github.io/ts-graphviz/",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"imports": {
|
|
39
|
-
"
|
|
39
|
+
"#lib/*": {
|
|
40
40
|
"import": "./lib/*/index.js",
|
|
41
41
|
"require": "./lib/*/index.cjs",
|
|
42
42
|
"types": "./lib/*/index.d.ts"
|