occam-query 4.1.2 → 4.1.4
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/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -97,8 +97,8 @@ If repeatedly using the same query expression, build a `query` object and make u
|
|
|
97
97
|
import { Query } from "occam-query";
|
|
98
98
|
|
|
99
99
|
const node = ...,
|
|
100
|
-
|
|
101
|
-
query = Query.
|
|
100
|
+
expressionString = "...",
|
|
101
|
+
query = Query.fromExpressionString(expressionString)
|
|
102
102
|
nodes = query.execute(node);
|
|
103
103
|
|
|
104
104
|
...
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "occam-query",
|
|
3
3
|
"author": "James Smith",
|
|
4
|
-
"version": "4.1.
|
|
4
|
+
"version": "4.1.4",
|
|
5
5
|
"license": "MIT, Anti-996",
|
|
6
6
|
"homepage": "https://github.com/djalbat/occam-query",
|
|
7
7
|
"description": "Occam's query functionality.",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@swc/core": "^1.5.6",
|
|
19
19
|
"easy": "^21.0.5",
|
|
20
|
-
"easy-layout": "^6.0.
|
|
21
|
-
"easy-with-style": "^3.0.
|
|
20
|
+
"easy-layout": "^6.0.198",
|
|
21
|
+
"easy-with-style": "^3.0.415",
|
|
22
22
|
"esbuild": "^0.9.2",
|
|
23
23
|
"express": "^4.17.1",
|
|
24
24
|
"juxtapose": "^4.0.108",
|