@thi.ng/egf 0.6.160 → 0.6.162
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 +1 -1
- package/README.md +1 -1
- package/package.json +14 -14
- package/parser.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 202 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/egf",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.162",
|
|
4
4
|
"description": "Extensible Graph Format",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,20 +40,20 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.11.
|
|
44
|
-
"@thi.ng/checks": "^3.6.
|
|
45
|
-
"@thi.ng/dot": "^2.1.
|
|
46
|
-
"@thi.ng/errors": "^2.5.
|
|
47
|
-
"@thi.ng/logger": "^3.1.
|
|
48
|
-
"@thi.ng/prefixes": "^2.3.
|
|
49
|
-
"@thi.ng/strings": "^3.9.
|
|
50
|
-
"@thi.ng/transducers-binary": "^2.1.
|
|
51
|
-
"@thi.ng/trie": "^1.1.
|
|
43
|
+
"@thi.ng/api": "^8.11.21",
|
|
44
|
+
"@thi.ng/checks": "^3.6.24",
|
|
45
|
+
"@thi.ng/dot": "^2.1.96",
|
|
46
|
+
"@thi.ng/errors": "^2.5.27",
|
|
47
|
+
"@thi.ng/logger": "^3.1.2",
|
|
48
|
+
"@thi.ng/prefixes": "^2.3.38",
|
|
49
|
+
"@thi.ng/strings": "^3.9.6",
|
|
50
|
+
"@thi.ng/transducers-binary": "^2.1.154",
|
|
51
|
+
"@thi.ng/trie": "^1.1.15"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@thi.ng/equiv": "^2.1.
|
|
55
|
-
"esbuild": "^0.
|
|
56
|
-
"typedoc": "^0.27.
|
|
54
|
+
"@thi.ng/equiv": "^2.1.77",
|
|
55
|
+
"esbuild": "^0.25.0",
|
|
56
|
+
"typedoc": "^0.27.7",
|
|
57
57
|
"typescript": "^5.7.3"
|
|
58
58
|
},
|
|
59
59
|
"keywords": [
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"status": "alpha",
|
|
111
111
|
"year": 2020
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "bee617702ac61d093465b967f8f973dc566faa6b\n"
|
|
114
114
|
}
|
package/parser.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type ParseContext } from "./api.js";
|
|
2
2
|
export declare const parse: (src: string, ctx: ParseContext) => ParseContext;
|
|
3
|
-
/** @
|
|
3
|
+
/** @internal */
|
|
4
4
|
export declare const $parseFile: (path: string, ctx?: Partial<ParseContext>) => ParseContext;
|
|
5
5
|
/**
|
|
6
6
|
* Parses EGF graph from given local file name, using provided options (if any)
|