@goatlab/fluent-loki 0.9.9 → 0.9.10
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/dist/Loki.d.ts +7 -7
- package/dist/Loki.js +14 -14
- package/dist/Loki.js.map +1 -1
- package/dist/LokiConnector.d.ts +2 -4
- package/dist/LokiConnector.js +74 -79
- package/dist/LokiConnector.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/test/loki.repository.factory.d.ts +1 -1
- package/dist/test/loki.repository.factory.js +1 -1
- package/dist/test/loki.repository.factory.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goatlab/fluent-loki",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.10",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"@goatlab/dates": "^0.6.6",
|
|
6
6
|
"lokijs": "^1.5.12",
|
|
7
7
|
"typeorm": "^0.3.25",
|
|
8
|
-
"@goatlab/fluent": "0.9.
|
|
8
|
+
"@goatlab/fluent": "0.9.10",
|
|
9
9
|
"@goatlab/js-utils": "0.10.0",
|
|
10
10
|
"@goatlab/tsconfig": "0.1.0"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
+
"@biomejs/biome": "^2.1.3",
|
|
13
14
|
"@types/lokijs": "^1.5.7",
|
|
14
15
|
"@types/node": "^17.0.23",
|
|
15
16
|
"dotenv-cli": "^5.1.0",
|
|
16
|
-
"eslint": "^8.5.0",
|
|
17
|
-
"prettier": "^2.6.1",
|
|
18
17
|
"pretty-quick": "^3.1.3",
|
|
19
18
|
"ts-node": "^10.9.2",
|
|
20
19
|
"turbo": "^1.1.10",
|
|
21
20
|
"typescript": "^5.0.0",
|
|
22
|
-
"vitest": "^2.1.8"
|
|
21
|
+
"vitest": "^2.1.8",
|
|
22
|
+
"@goatlab/biome": "0.1.0"
|
|
23
23
|
},
|
|
24
24
|
"keywords": [
|
|
25
25
|
"typescript",
|
|
@@ -113,8 +113,8 @@
|
|
|
113
113
|
"predev": "rimraf dist",
|
|
114
114
|
"test": "vitest run",
|
|
115
115
|
"dev": "tsc --watch",
|
|
116
|
-
"lint": "
|
|
117
|
-
"format": "
|
|
116
|
+
"lint": "biome check --write .",
|
|
117
|
+
"format": "biome format --write .",
|
|
118
118
|
"update:packages": "npm-check-updates -u && yarn",
|
|
119
119
|
"serve": "tsc -w",
|
|
120
120
|
"build": "tsc"
|