@thi.ng/oquery 2.2.36 → 2.2.37
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 +9 -3
- package/package.json +8 -7
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 191 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
|
>
|
|
@@ -69,7 +69,13 @@ thi.ng/umbrella packages, but would benefit from a more unified approach.
|
|
|
69
69
|
yarn add @thi.ng/oquery
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
|
|
72
|
+
ESM import:
|
|
73
|
+
|
|
74
|
+
```ts
|
|
75
|
+
import * as oq from "@thi.ng/oquery";
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Browser ESM import:
|
|
73
79
|
|
|
74
80
|
```html
|
|
75
81
|
<script type="module" src="https://cdn.skypack.dev/@thi.ng/oquery"></script>
|
|
@@ -80,7 +86,7 @@ ES module import:
|
|
|
80
86
|
For Node.js REPL:
|
|
81
87
|
|
|
82
88
|
```js
|
|
83
|
-
const
|
|
89
|
+
const oq = await import("@thi.ng/oquery");
|
|
84
90
|
```
|
|
85
91
|
|
|
86
92
|
Package sizes (brotli'd, pre-treeshake): ESM: 1.66 KB
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/oquery",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.37",
|
|
4
4
|
"description": "Datalog-inspired, optimized pattern/predicate query engine for JS objects & arrays of objects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,11 +36,11 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.
|
|
40
|
-
"@thi.ng/checks": "^3.
|
|
41
|
-
"@thi.ng/compare": "^2.3.
|
|
42
|
-
"@thi.ng/defmulti": "^3.0.
|
|
43
|
-
"@thi.ng/equiv": "^2.1.
|
|
39
|
+
"@thi.ng/api": "^8.10.0",
|
|
40
|
+
"@thi.ng/checks": "^3.6.0",
|
|
41
|
+
"@thi.ng/compare": "^2.3.1",
|
|
42
|
+
"@thi.ng/defmulti": "^3.0.35",
|
|
43
|
+
"@thi.ng/equiv": "^2.1.54"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@microsoft/api-extractor": "^7.43.0",
|
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
"thi.ng": {
|
|
91
|
+
"alias": "oq",
|
|
91
92
|
"related": [
|
|
92
93
|
"associative",
|
|
93
94
|
"csv",
|
|
@@ -96,5 +97,5 @@
|
|
|
96
97
|
],
|
|
97
98
|
"year": 2020
|
|
98
99
|
},
|
|
99
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "85ac4bd4d6d89f8e3689e2863d5bea0cecdb371c\n"
|
|
100
101
|
}
|