@powerlines/deepkit 0.5.59 → 0.5.61
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-6NY7OJ54.js → chunk-73R55HOA.js} +14 -14
- package/dist/{chunk-N76GLP7K.cjs → chunk-Y5CDHWJ3.cjs} +14 -14
- package/dist/index.cjs +8 -8
- package/dist/index.js +1 -1
- package/dist/utilities.cjs +8 -8
- package/dist/utilities.js +1 -1
- package/dist/vendor/{chunk-WVI6DRDO.cjs → chunk-DNY32DIS.cjs} +3 -3
- package/dist/vendor/{chunk-IXYCM73N.cjs → chunk-E4GR3LSX.cjs} +2 -2
- package/dist/vendor/{chunk-ZYTTT7GB.cjs → chunk-GNK63KM6.cjs} +176 -176
- package/dist/vendor/core.cjs +130 -130
- package/dist/vendor/type-compiler/{chunk-GOIALYZ6.js → chunk-CBH3VMRW.js} +2 -2
- package/dist/vendor/type-compiler/{chunk-3XRWIN6H.js → chunk-MSCDJYFR.js} +1 -1
- package/dist/vendor/type-compiler/{chunk-OXKZDFYM.cjs → chunk-O2NPSYS5.cjs} +2 -2
- package/dist/vendor/type-compiler/{chunk-7XTH2FVS.cjs → chunk-TMHHGY4I.cjs} +505 -505
- package/dist/vendor/type-compiler/compiler.cjs +12 -12
- package/dist/vendor/type-compiler/compiler.js +2 -2
- package/dist/vendor/type-compiler/config.cjs +9 -9
- package/dist/vendor/type-compiler/config.js +2 -2
- package/dist/vendor/type-compiler/index.cjs +24 -24
- package/dist/vendor/type-compiler/index.js +4 -4
- package/dist/vendor/type-spec.cjs +5 -5
- package/dist/vendor/type.cjs +780 -780
- package/dist/vendor/type.js +5 -5
- package/package.json +9 -9
package/dist/vendor/type.js
CHANGED
|
@@ -4387,7 +4387,7 @@ var Processor = class _Processor {
|
|
|
4387
4387
|
});
|
|
4388
4388
|
break;
|
|
4389
4389
|
case ReflectionOp.class: {
|
|
4390
|
-
let
|
|
4390
|
+
let add = function(member) {
|
|
4391
4391
|
if (member.kind === ReflectionKind.propertySignature) {
|
|
4392
4392
|
member = {
|
|
4393
4393
|
...member,
|
|
@@ -4432,7 +4432,7 @@ var Processor = class _Processor {
|
|
|
4432
4432
|
property.readonly = true;
|
|
4433
4433
|
}
|
|
4434
4434
|
parameter.type.parent = property;
|
|
4435
|
-
|
|
4435
|
+
add(property);
|
|
4436
4436
|
}
|
|
4437
4437
|
}
|
|
4438
4438
|
}
|
|
@@ -4440,7 +4440,7 @@ var Processor = class _Processor {
|
|
|
4440
4440
|
}
|
|
4441
4441
|
}
|
|
4442
4442
|
};
|
|
4443
|
-
__name(
|
|
4443
|
+
__name(add, "add");
|
|
4444
4444
|
const types = this.popFrame();
|
|
4445
4445
|
let t2 = {
|
|
4446
4446
|
kind: ReflectionKind.class,
|
|
@@ -4452,13 +4452,13 @@ var Processor = class _Processor {
|
|
|
4452
4452
|
switch (member.kind) {
|
|
4453
4453
|
case ReflectionKind.objectLiteral:
|
|
4454
4454
|
case ReflectionKind.class: {
|
|
4455
|
-
for (const sub of member.types)
|
|
4455
|
+
for (const sub of member.types) add(sub);
|
|
4456
4456
|
break;
|
|
4457
4457
|
}
|
|
4458
4458
|
case ReflectionKind.indexSignature:
|
|
4459
4459
|
case ReflectionKind.property:
|
|
4460
4460
|
case ReflectionKind.method: {
|
|
4461
|
-
|
|
4461
|
+
add(member);
|
|
4462
4462
|
}
|
|
4463
4463
|
}
|
|
4464
4464
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/deepkit",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.61",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -117,15 +117,15 @@
|
|
|
117
117
|
"keywords": ["deepkit", "powerlines", "storm-software"],
|
|
118
118
|
"dependencies": {
|
|
119
119
|
"@storm-software/config-tools": "^1.188.75",
|
|
120
|
-
"@stryke/capnp": "^0.12.
|
|
121
|
-
"@stryke/fs": "^0.33.
|
|
122
|
-
"@stryke/path": "^0.24.
|
|
123
|
-
"@stryke/type-checks": "^0.5.
|
|
124
|
-
"@stryke/types": "^0.10.
|
|
120
|
+
"@stryke/capnp": "^0.12.54",
|
|
121
|
+
"@stryke/fs": "^0.33.29",
|
|
122
|
+
"@stryke/path": "^0.24.2",
|
|
123
|
+
"@stryke/type-checks": "^0.5.16",
|
|
124
|
+
"@stryke/types": "^0.10.30",
|
|
125
125
|
"defu": "^6.1.4",
|
|
126
126
|
"esbuild": "^0.25.12",
|
|
127
127
|
"jiti": "^2.6.1",
|
|
128
|
-
"powerlines": "^0.37.
|
|
128
|
+
"powerlines": "^0.37.18",
|
|
129
129
|
"typescript": "^5.9.3"
|
|
130
130
|
},
|
|
131
131
|
"devDependencies": {
|
|
@@ -133,10 +133,10 @@
|
|
|
133
133
|
"@deepkit/type": "1.0.5",
|
|
134
134
|
"@deepkit/type-compiler": "1.0.5",
|
|
135
135
|
"@deepkit/type-spec": "1.0.1",
|
|
136
|
-
"@types/node": "^24.10.
|
|
136
|
+
"@types/node": "^24.10.8",
|
|
137
137
|
"dts-bundle-generator": "^9.5.1",
|
|
138
138
|
"tsup": "8.4.0"
|
|
139
139
|
},
|
|
140
140
|
"publishConfig": { "access": "public" },
|
|
141
|
-
"gitHead": "
|
|
141
|
+
"gitHead": "dce17588f63e251c32260385c531bbe6c172576d"
|
|
142
142
|
}
|