@uql/core 1.0.2 → 1.0.3
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 +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ The `uql` queries can be safely written in the frontend (browser/mobile) and sen
|
|
|
22
22
|
### <a name="installation"></a> Installation
|
|
23
23
|
|
|
24
24
|
This package is a [Pure ESM package](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c):
|
|
25
|
-
Node
|
|
25
|
+
Node 14.16+ is needed to use it and it must be `import`ed instead of `require`d.
|
|
26
26
|
|
|
27
27
|
1. Install the core package:
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
"homepage": "https://uql.io",
|
|
4
4
|
"description": "flexible and efficient ORM, with declarative JSON syntax and smart type-safety",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.3",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"
|
|
9
|
-
"types": "index.d.ts",
|
|
8
|
+
"exports": "./index.js",
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"copyfiles": "copyfiles -f package.json ../../README.md ../../CHANGELOG.md dist",
|
|
12
12
|
"build": "yarn clean && tsc -b tsconfig.build.json && yarn copyfiles",
|