inferred-types 0.55.1 → 0.55.2
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/modules/constants/dist/index.cjs +3 -3
- package/modules/inferred-types/dist/index.cjs +9 -3
- package/modules/inferred-types/dist/index.cjs.map +1 -1
- package/modules/inferred-types/dist/index.d.ts +10 -8
- package/modules/inferred-types/dist/index.js +6 -0
- package/modules/inferred-types/dist/index.js.map +1 -1
- package/modules/runtime/dist/index.cjs +9 -3
- package/modules/runtime/dist/index.cjs.map +1 -1
- package/modules/runtime/dist/index.d.ts +10 -8
- package/modules/runtime/dist/index.js +6 -0
- package/modules/runtime/dist/index.js.map +1 -1
- package/modules/types/dist/index.cjs +3 -3
- package/package.json +15 -13
|
@@ -18,8 +18,8 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
19
|
|
|
20
20
|
// src/index.ts
|
|
21
|
-
var
|
|
22
|
-
__export(
|
|
21
|
+
var index_exports = {};
|
|
22
|
+
__export(index_exports, {
|
|
23
23
|
DEFAULT_MANY_TO_ONE_MAPPING: () => DEFAULT_MANY_TO_ONE_MAPPING,
|
|
24
24
|
DEFAULT_ONE_TO_MANY_MAPPING: () => DEFAULT_ONE_TO_MANY_MAPPING,
|
|
25
25
|
DEFAULT_ONE_TO_ONE_MAPPING: () => DEFAULT_ONE_TO_ONE_MAPPING,
|
|
@@ -36,7 +36,7 @@ __export(src_exports, {
|
|
|
36
36
|
ExifSubjectDistance: () => ExifSubjectDistance,
|
|
37
37
|
MapCardinality: () => MapCardinality
|
|
38
38
|
});
|
|
39
|
-
module.exports = __toCommonJS(
|
|
39
|
+
module.exports = __toCommonJS(index_exports);
|
|
40
40
|
|
|
41
41
|
// src/dictionary/MapTo.ts
|
|
42
42
|
function toFinalizedConfig(config) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inferred-types",
|
|
3
|
-
"version": "0.55.
|
|
3
|
+
"version": "0.55.2",
|
|
4
4
|
"description": "Functions which provide useful type inference on TS projects",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ken Snyder<ken@ken.net>",
|
|
@@ -57,28 +57,30 @@
|
|
|
57
57
|
"release:latest": "pnpm install",
|
|
58
58
|
"release:bump": "bumpp",
|
|
59
59
|
"prepublishOnly": "npm run build",
|
|
60
|
-
"watch": "bash watch"
|
|
60
|
+
"watch": "bash watch",
|
|
61
|
+
"prepare": "husky"
|
|
61
62
|
},
|
|
62
63
|
"devDependencies": {
|
|
63
|
-
"@antfu/eslint-config": "^3.
|
|
64
|
-
"@eslint/js": "^9.
|
|
64
|
+
"@antfu/eslint-config": "^3.12.1",
|
|
65
|
+
"@eslint/js": "^9.17.0",
|
|
65
66
|
"@type-challenges/utils": "~0.1.1",
|
|
66
67
|
"@types/luxon": "^3.4.2",
|
|
67
68
|
"@types/node": "^22.10.2",
|
|
68
|
-
"@typescript-eslint/eslint-plugin": "^8.18.
|
|
69
|
-
"@typescript-eslint/parser": "^8.18.
|
|
69
|
+
"@typescript-eslint/eslint-plugin": "^8.18.2",
|
|
70
|
+
"@typescript-eslint/parser": "^8.18.2",
|
|
70
71
|
"@typescript/analyze-trace": "^0.10.1",
|
|
71
72
|
"@vitest/ui": "^2.1.8",
|
|
72
|
-
"bumpp": "^9.9.
|
|
73
|
-
"chalk": "^5.
|
|
73
|
+
"bumpp": "^9.9.2",
|
|
74
|
+
"chalk": "^5.4.1",
|
|
74
75
|
"cross-env": "^7.0.3",
|
|
75
|
-
"eslint": "^9.
|
|
76
|
+
"eslint": "^9.17.0",
|
|
76
77
|
"eslint-config-prettier": "^9.1.0",
|
|
77
78
|
"eslint-plugin-format": "^0.1.3",
|
|
78
79
|
"eslint-plugin-prettier": "^5.2.1",
|
|
79
80
|
"eslint-plugin-promise": "^7.2.1",
|
|
80
81
|
"glob": "^11.0.0",
|
|
81
|
-
"
|
|
82
|
+
"husky": "^9.1.7",
|
|
83
|
+
"jiti": "^2.4.2",
|
|
82
84
|
"luxon": "^3.5.0",
|
|
83
85
|
"moment": "^2.30.1",
|
|
84
86
|
"npm-run-all": "~4.1.5",
|
|
@@ -91,10 +93,10 @@
|
|
|
91
93
|
"typecheck": "^0.1.2",
|
|
92
94
|
"typed-tester": "^0.6.2",
|
|
93
95
|
"typescript": "5.7.2",
|
|
94
|
-
"typescript-eslint": "^8.18.
|
|
95
|
-
"typescript-transform-paths": "^3.5.
|
|
96
|
+
"typescript-eslint": "^8.18.2",
|
|
97
|
+
"typescript-transform-paths": "^3.5.3",
|
|
96
98
|
"typescript-transformer-esm": "^1.1.0",
|
|
97
|
-
"vite": "^6.0.
|
|
99
|
+
"vite": "^6.0.6",
|
|
98
100
|
"vite-node": "^2.1.8",
|
|
99
101
|
"vitest": "^2.1.8",
|
|
100
102
|
"vue": "^3.5.13"
|