@ts-graphviz/adapter 2.0.4 → 2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af

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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @ts-graphviz/adapter
2
2
 
3
+ ## 2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1179](https://github.com/ts-graphviz/ts-graphviz/pull/1179) [`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946) Thanks [@kamiazya](https://github.com/kamiazya)! - build(deps-dev): bump vite-plugin-dts from 3.9.1 to 4.2.1
8
+
9
+ - Updated dependencies [[`f48ae4a`](https://github.com/ts-graphviz/ts-graphviz/commit/f48ae4a36fde430cf4a4769189243acd76560946)]:
10
+ - @ts-graphviz/common@2.1.4-next-6bb5ab18682daa1410de4a35edc22316487989af
11
+
3
12
  ## 2.0.4
4
13
 
5
14
  ### Patch Changes
@@ -1,4 +1,4 @@
1
- import type { Layout, Options } from './types.js';
1
+ import { Layout, Options } from './types.js';
2
2
  /**
3
3
  * createCommandAndArgs creates a command and an array of arguments, based on the given {@link Options}.
4
4
  *
@@ -1,5 +1,5 @@
1
- import type { Attribute, AttributeKey } from '@ts-graphviz/common';
2
- import type { Layout, Options } from './types.js';
1
+ import { Attribute, AttributeKey } from '@ts-graphviz/common';
2
+ import { Layout, Options } from './types.js';
3
3
  /**
4
4
  * escapeValue is a function that escapes a given Attribute value of a given AttributeKey.
5
5
  * It checks the type of the value and adds quotes if the value is of type string and contains whitespace.
package/lib/deno.d.ts CHANGED
@@ -1,9 +1,6 @@
1
+ import { Layout, Options } from './types.js';
1
2
  /// <reference lib="dom" />
2
3
  export type * from './types.js';
3
- /**
4
- * @module @ts-graphviz/adapter
5
- */
6
- import type { Layout, Options } from './types.js';
7
4
  /**
8
5
  * Execute the Graphviz dot command and make a Stream of the results.
9
6
  */
@@ -1,4 +1,4 @@
1
- import type { Layout, Options } from './types.js';
1
+ import { Layout, Options } from './types.js';
2
2
  /**
3
3
  * Execute the Graphviz dot command and output the results to a file.
4
4
  */
@@ -1,5 +1,4 @@
1
- /// <reference types="node" resolution-mode="require"/>
2
- import type { Layout, Options } from './types.js';
1
+ import { Layout, Options } from './types.js';
3
2
  /**
4
3
  * Execute the Graphviz dot command and make a Stream of the results.
5
4
  */
package/lib/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { $keywords, $keywordsValidation, EdgeAttributesObject, GraphAttributesObject, NodeAttributesObject, SubgraphAttributesObject } from '@ts-graphviz/common';
1
+ import { $keywords, $keywordsValidation, EdgeAttributesObject, GraphAttributesObject, NodeAttributesObject, SubgraphAttributesObject } from '@ts-graphviz/common';
2
2
  export type Format = Format.values;
3
3
  export declare namespace Format {
4
4
  type values = Exclude<keyof $values, keyof $exclude | symbol | number>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-graphviz/adapter",
3
- "version": "2.0.4",
3
+ "version": "2.0.5-next-6bb5ab18682daa1410de4a35edc22316487989af",
4
4
  "description": "Graphviz Runtime adapters for Cross Platform",
5
5
  "keywords": [
6
6
  "graphviz",
@@ -51,13 +51,13 @@
51
51
  "module": "./lib/node.js",
52
52
  "types": "./lib/node.d.ts",
53
53
  "dependencies": {
54
- "@ts-graphviz/common": "^2.1.3"
54
+ "@ts-graphviz/common": "^2.1.4-next-6bb5ab18682daa1410de4a35edc22316487989af"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@types/node": "^20.12.7",
58
58
  "typescript": "^5.4.5",
59
59
  "vite": "^5.2.8",
60
- "vite-plugin-dts": "^3.7.3"
60
+ "vite-plugin-dts": "^4.2.1"
61
61
  },
62
62
  "engines": {
63
63
  "node": ">=18"