@platformatic/sql-mapper 3.38.0 → 3.38.1
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/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platformatic/sql-mapper",
|
|
3
|
-
"version": "3.38.
|
|
3
|
+
"version": "3.38.1",
|
|
4
4
|
"description": "A data mapper utility for SQL databases",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"camelcase": "^6.3.0",
|
|
36
36
|
"fastify-plugin": "^5.0.0",
|
|
37
37
|
"inflected": "^2.1.0",
|
|
38
|
-
"@platformatic/foundation": "3.38.
|
|
39
|
-
"@platformatic/telemetry": "3.38.
|
|
38
|
+
"@platformatic/foundation": "3.38.1",
|
|
39
|
+
"@platformatic/telemetry": "3.38.1"
|
|
40
40
|
},
|
|
41
41
|
"tsd": {
|
|
42
42
|
"directory": "test/types"
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
},
|
|
47
47
|
"scripts": {
|
|
48
48
|
"lint": "eslint",
|
|
49
|
-
"test": "npm run test:
|
|
49
|
+
"test": "npm run test:types && npm run test:postgresql && npm run test:mariadb && npm run test:mysql && npm run test:mysql8 && npm run test:sqlite",
|
|
50
50
|
"test:runner": "node --test --test-reporter=cleaner-spec-reporter --test-concurrency=1 --test-timeout=2000000 test/*.test.js test/**/*.test.js",
|
|
51
51
|
"test:postgresql": "DB=postgresql npm run test:runner",
|
|
52
52
|
"test:mariadb": "DB=mariadb npm run test:runner",
|
|
53
53
|
"test:mysql": "DB=mysql npm run test:runner",
|
|
54
54
|
"test:mysql8": "DB=mysql8 npm run test:runner",
|
|
55
55
|
"test:sqlite": "DB=sqlite npm run test:runner",
|
|
56
|
-
"test:
|
|
56
|
+
"test:types": "tsd"
|
|
57
57
|
}
|
|
58
58
|
}
|