@thi.ng/parse 2.1.6 → 2.1.9
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 +7 -1
- package/grammar.d.ts +1 -1
- package/package.json +11 -11
- package/xform/print.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-06-09T16:14:01Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
9
9
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
10
|
and/or version bumps of transitive dependencies.
|
|
11
11
|
|
|
12
|
+
### [2.1.8](https://github.com/thi-ng/umbrella/tree/@thi.ng/parse@2.1.8) (2022-06-09)
|
|
13
|
+
|
|
14
|
+
#### ♻️ Refactoring
|
|
15
|
+
|
|
16
|
+
- various (minor) TS4.7 related updates/fixes ([9d9ecae](https://github.com/thi-ng/umbrella/commit/9d9ecae))
|
|
17
|
+
|
|
12
18
|
### [2.1.5](https://github.com/thi-ng/umbrella/tree/@thi.ng/parse@2.1.5) (2022-03-11)
|
|
13
19
|
|
|
14
20
|
#### ♻️ Refactoring
|
package/grammar.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { GrammarOpts, Language, Parser, RuleTransforms } from "./api.js";
|
|
2
2
|
export declare const GRAMMAR: Parser<string>;
|
|
3
|
-
export declare const defGrammar: (rules: string, env?: RuleTransforms
|
|
3
|
+
export declare const defGrammar: (rules: string, env?: RuleTransforms, opts?: Partial<GrammarOpts>) => Language | undefined;
|
|
4
4
|
//# sourceMappingURL=grammar.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/parse",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"description": "Purely functional parser combinators & AST generation for generic inputs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.3.
|
|
38
|
-
"@thi.ng/checks": "^3.1
|
|
39
|
-
"@thi.ng/defmulti": "^2.1.
|
|
40
|
-
"@thi.ng/errors": "^2.1.
|
|
41
|
-
"@thi.ng/strings": "^3.3.
|
|
37
|
+
"@thi.ng/api": "^8.3.7",
|
|
38
|
+
"@thi.ng/checks": "^3.2.1",
|
|
39
|
+
"@thi.ng/defmulti": "^2.1.7",
|
|
40
|
+
"@thi.ng/errors": "^2.1.7",
|
|
41
|
+
"@thi.ng/strings": "^3.3.5"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@microsoft/api-extractor": "^7.
|
|
45
|
-
"@thi.ng/testament": "^0.2.
|
|
44
|
+
"@microsoft/api-extractor": "^7.25.0",
|
|
45
|
+
"@thi.ng/testament": "^0.2.8",
|
|
46
46
|
"rimraf": "^3.0.2",
|
|
47
47
|
"tools": "^0.0.1",
|
|
48
|
-
"typedoc": "^0.22.
|
|
49
|
-
"typescript": "^4.
|
|
48
|
+
"typedoc": "^0.22.17",
|
|
49
|
+
"typescript": "^4.7.3"
|
|
50
50
|
},
|
|
51
51
|
"keywords": [
|
|
52
52
|
"ast",
|
|
@@ -238,5 +238,5 @@
|
|
|
238
238
|
],
|
|
239
239
|
"year": 2020
|
|
240
240
|
},
|
|
241
|
-
"gitHead": "
|
|
241
|
+
"gitHead": "ab0188234419f2d9f471de80871df930e5555bd6\n"
|
|
242
242
|
}
|
package/xform/print.d.ts
CHANGED
|
@@ -31,5 +31,5 @@ export declare const xfPrint: (fn?: Fn<string, void>) => ScopeTransform<any>;
|
|
|
31
31
|
*
|
|
32
32
|
* @param parser -
|
|
33
33
|
*/
|
|
34
|
-
export declare const print: <T>(parser: Parser<T>, fn?: Fn<string, void>
|
|
34
|
+
export declare const print: <T>(parser: Parser<T>, fn?: Fn<string, void>) => Parser<T>;
|
|
35
35
|
//# sourceMappingURL=print.d.ts.map
|