@powerlines/deepkit 0.5.1 → 0.5.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/dist/{chunk-4V4LIAN2.js → chunk-2ODODKQQ.js} +1 -1
- package/dist/{chunk-ESVH44QW.cjs → chunk-6QPIKQMO.cjs} +2 -2
- package/dist/{chunk-U5O6DHJ2.js → chunk-C7BRLIIA.js} +1 -1
- package/dist/{chunk-VWKKT7CM.cjs → chunk-EKHXI2JI.cjs} +3 -3
- package/dist/{chunk-YQQIT5YX.js → chunk-LPLPOVLC.js} +1 -1
- package/dist/{chunk-B6GTAZEL.js → chunk-MNUBEEIW.js} +4 -0
- package/dist/{chunk-PKLLVKY2.cjs → chunk-QABG54Y3.cjs} +2 -2
- package/dist/{chunk-FFBZWTR7.cjs → chunk-VXZTOOL6.cjs} +6 -0
- package/dist/esbuild-plugin.cjs +4 -4
- package/dist/esbuild-plugin.js +3 -3
- package/dist/index.cjs +9 -9
- package/dist/index.js +4 -4
- package/dist/reflect-type.cjs +5 -5
- package/dist/reflect-type.js +4 -4
- package/dist/transformer.cjs +3 -3
- package/dist/transformer.js +1 -1
- package/dist/transpile.cjs +3 -3
- package/dist/transpile.js +2 -2
- package/dist/vendor/chunk-5BKT4CS5.js +28 -0
- package/dist/vendor/{chunk-ZDFKNN7Y.cjs → chunk-BDXVTHBY.cjs} +322 -153
- package/dist/vendor/{chunk-7LAB3COT.js → chunk-BLN7QVCP.js} +154 -7
- package/dist/vendor/{chunk-5NPGWGPO.cjs → chunk-EQXMWOHO.cjs} +6 -0
- package/dist/vendor/chunk-MO4O4UYI.cjs +42 -0
- package/dist/vendor/core.cjs +131 -130
- package/dist/vendor/core.js +2 -2
- package/dist/vendor/index.cjs +28 -0
- package/dist/vendor/index.d.cts +2 -0
- package/dist/vendor/index.d.ts +2 -0
- package/dist/vendor/index.js +1 -0
- package/dist/vendor/type-spec.cjs +6 -5
- package/dist/vendor/type-spec.js +1 -1
- package/dist/vendor/type.cjs +2346 -641
- package/dist/vendor/type.js +1661 -23
- package/package.json +5 -5
- package/dist/vendor/chunk-SHUYVCID.js +0 -4
- package/dist/vendor/chunk-USNT2KNT.cjs +0 -6
package/dist/vendor/index.cjs
CHANGED
|
@@ -95,4 +95,32 @@ Object.defineProperty(exports, "transformer", {
|
|
|
95
95
|
enumerable: true,
|
|
96
96
|
get: function () { return chunkK5KCTNDL_cjs.transformer; }
|
|
97
97
|
});
|
|
98
|
+
Object.defineProperty(exports, "defaultExcluded", {
|
|
99
|
+
enumerable: true,
|
|
100
|
+
get: function () { return chunkM3FJ3QXG_cjs.defaultExcluded; }
|
|
101
|
+
});
|
|
102
|
+
Object.defineProperty(exports, "getConfigResolver", {
|
|
103
|
+
enumerable: true,
|
|
104
|
+
get: function () { return chunkM3FJ3QXG_cjs.getConfigResolver; }
|
|
105
|
+
});
|
|
106
|
+
Object.defineProperty(exports, "isObject", {
|
|
107
|
+
enumerable: true,
|
|
108
|
+
get: function () { return chunkM3FJ3QXG_cjs.isObject; }
|
|
109
|
+
});
|
|
110
|
+
Object.defineProperty(exports, "parseRawMode", {
|
|
111
|
+
enumerable: true,
|
|
112
|
+
get: function () { return chunkM3FJ3QXG_cjs.parseRawMode; }
|
|
113
|
+
});
|
|
114
|
+
Object.defineProperty(exports, "reflectionLevel", {
|
|
115
|
+
enumerable: true,
|
|
116
|
+
get: function () { return chunkM3FJ3QXG_cjs.reflectionLevel; }
|
|
117
|
+
});
|
|
118
|
+
Object.defineProperty(exports, "reflectionModeMatcher", {
|
|
119
|
+
enumerable: true,
|
|
120
|
+
get: function () { return chunkM3FJ3QXG_cjs.reflectionModeMatcher; }
|
|
121
|
+
});
|
|
122
|
+
Object.defineProperty(exports, "reflectionModes", {
|
|
123
|
+
enumerable: true,
|
|
124
|
+
get: function () { return chunkM3FJ3QXG_cjs.reflectionModes; }
|
|
125
|
+
});
|
|
98
126
|
exports.DeepkitLoader = DeepkitLoader;
|
package/dist/vendor/index.d.cts
CHANGED
package/dist/vendor/index.d.ts
CHANGED
package/dist/vendor/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Cache, ReflectionTransformer } from './chunk-L3KIZV6P.js';
|
|
2
2
|
export { Cache, DeclarationTransformer, ReflectionTransformer, debugPackStruct, declarationTransformer, encodeOps, packSize, packSizeByte, transformer } from './chunk-L3KIZV6P.js';
|
|
3
3
|
import { __name } from './chunk-IOMA7ABE.js';
|
|
4
|
+
export { defaultExcluded, getConfigResolver, isObject, parseRawMode, reflectionLevel, reflectionModeMatcher, reflectionModes } from './chunk-IOMA7ABE.js';
|
|
4
5
|
import ts from 'typescript';
|
|
5
6
|
|
|
6
7
|
var DeepkitLoader = class {
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
|
|
3
|
+
var chunkEQXMWOHO_cjs = require('./chunk-EQXMWOHO.cjs');
|
|
4
|
+
var chunkMO4O4UYI_cjs = require('./chunk-MO4O4UYI.cjs');
|
|
6
5
|
|
|
6
|
+
// src/vendor/type-spec.ts
|
|
7
|
+
chunkMO4O4UYI_cjs.init_cjs_shims();
|
|
7
8
|
|
|
8
9
|
Object.defineProperty(exports, "ReflectionOp", {
|
|
9
10
|
enumerable: true,
|
|
10
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkEQXMWOHO_cjs.ReflectionOp; }
|
|
11
12
|
});
|
|
12
13
|
Object.defineProperty(exports, "TypeNumberBrand", {
|
|
13
14
|
enumerable: true,
|
|
14
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkEQXMWOHO_cjs.TypeNumberBrand; }
|
|
15
16
|
});
|
package/dist/vendor/type-spec.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { ReflectionOp, TypeNumberBrand } from './chunk-BR2FK5K7.js';
|
|
2
|
-
import './chunk-
|
|
2
|
+
import './chunk-5BKT4CS5.js';
|