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 CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var utils = require('#/lib/utils');
6
- var common = require('#/lib/common');
5
+ var utils = require('#lib/utils');
6
+ var common = require('#lib/common');
7
7
 
8
8
  class Builder {
9
9
  options;
@@ -1,4 +1,4 @@
1
- import { Compass, AttributeKey, ASTType, DotObjectType, DotObjectModel } from '#/lib/common';
1
+ import { Compass, AttributeKey, ASTType, DotObjectType, DotObjectModel } from '#lib/common';
2
2
 
3
3
  interface FilePosition {
4
4
  offset: number;
package/lib/ast/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { pipe, map } from '#/lib/utils';
2
- import { isNodeModel, isForwardRefNode } from '#/lib/common';
1
+ import { pipe, map } from '#lib/utils';
2
+ import { isNodeModel, isForwardRefNode } from '#lib/common';
3
3
 
4
4
  class Builder {
5
5
  options;
@@ -2,8 +2,8 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var common = require('#/lib/common');
6
- var ast = require('#/lib/ast');
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,
@@ -27,8 +27,8 @@ import {
27
27
  RootGraphModel,
28
28
  GraphAttributesObject,
29
29
  DotObjectModel,
30
- } from '#/lib/common';
31
- import { ConvertOptions, PrintOptions } from '#/lib/ast';
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 '#/lib/common';
2
- import { fromModel, stringify } from '#/lib/ast';
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('#/lib/common');
6
- var core = require('#/lib/core');
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 '#/lib/common';
2
- export * from '#/lib/core';
1
+ export * from '#lib/common';
2
+ export * from '#lib/core';
package/lib/index.js CHANGED
@@ -1,2 +1,2 @@
1
- export * from '#/lib/common';
2
- export * from '#/lib/core';
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-1",
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
- "#/lib/*": {
39
+ "#lib/*": {
40
40
  "import": "./lib/*/index.js",
41
41
  "require": "./lib/*/index.cjs",
42
42
  "types": "./lib/*/index.d.ts"
@@ -1,8 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "exclude": [
4
- "**/*.spec.ts",
5
- "**/*.test.ts",
6
- "**/__tests__/***/*"
7
- ]
8
- }