@powerlines/plugin-deepkit 0.10.139 → 0.11.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/dist/index.cjs +8 -12
- package/dist/index.mjs +8 -12
- package/package.json +6 -6
package/dist/index.cjs
CHANGED
|
@@ -46,17 +46,12 @@ const plugin = (options = {}) => {
|
|
|
46
46
|
config() {
|
|
47
47
|
return {
|
|
48
48
|
transform: { deepkit: options ?? {} },
|
|
49
|
-
build: {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"@powerlines/deepkit/vendor/type-spec",
|
|
56
|
-
"@powerlines/deepkit/vendor/type",
|
|
57
|
-
"@powerlines/deepkit/vendor/core"
|
|
58
|
-
]
|
|
59
|
-
}
|
|
49
|
+
build: { external: [
|
|
50
|
+
"@powerlines/deepkit/vendor/type-compiler",
|
|
51
|
+
"@powerlines/deepkit/vendor/type-spec",
|
|
52
|
+
"@powerlines/deepkit/vendor/type",
|
|
53
|
+
"@powerlines/deepkit/vendor/core"
|
|
54
|
+
] }
|
|
60
55
|
};
|
|
61
56
|
},
|
|
62
57
|
configResolved: {
|
|
@@ -74,7 +69,8 @@ const plugin = (options = {}) => {
|
|
|
74
69
|
...this.config.transform.tsc.compilerOptions ?? {},
|
|
75
70
|
exclude: this.config.transform.deepkit.exclude ?? [],
|
|
76
71
|
reflection,
|
|
77
|
-
reflectionLevel
|
|
72
|
+
reflectionLevel,
|
|
73
|
+
configFilePath: this.tsconfig.tsconfigFilePath
|
|
78
74
|
};
|
|
79
75
|
this.config.transform.tsc.transformers ??= {
|
|
80
76
|
before: [],
|
package/dist/index.mjs
CHANGED
|
@@ -17,17 +17,12 @@ const plugin = (options = {}) => {
|
|
|
17
17
|
config() {
|
|
18
18
|
return {
|
|
19
19
|
transform: { deepkit: options ?? {} },
|
|
20
|
-
build: {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"@powerlines/deepkit/vendor/type-spec",
|
|
27
|
-
"@powerlines/deepkit/vendor/type",
|
|
28
|
-
"@powerlines/deepkit/vendor/core"
|
|
29
|
-
]
|
|
30
|
-
}
|
|
20
|
+
build: { external: [
|
|
21
|
+
"@powerlines/deepkit/vendor/type-compiler",
|
|
22
|
+
"@powerlines/deepkit/vendor/type-spec",
|
|
23
|
+
"@powerlines/deepkit/vendor/type",
|
|
24
|
+
"@powerlines/deepkit/vendor/core"
|
|
25
|
+
] }
|
|
31
26
|
};
|
|
32
27
|
},
|
|
33
28
|
configResolved: {
|
|
@@ -45,7 +40,8 @@ const plugin = (options = {}) => {
|
|
|
45
40
|
...this.config.transform.tsc.compilerOptions ?? {},
|
|
46
41
|
exclude: this.config.transform.deepkit.exclude ?? [],
|
|
47
42
|
reflection,
|
|
48
|
-
reflectionLevel
|
|
43
|
+
reflectionLevel,
|
|
44
|
+
configFilePath: this.tsconfig.tsconfigFilePath
|
|
49
45
|
};
|
|
50
46
|
this.config.transform.tsc.transformers ??= {
|
|
51
47
|
before: [],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-deepkit",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -118,15 +118,15 @@
|
|
|
118
118
|
"keywords": ["deepkit", "powerlines", "storm-software", "powerlines-plugin"],
|
|
119
119
|
"dependencies": {
|
|
120
120
|
"@stryke/json": "^0.9.33",
|
|
121
|
-
"@powerlines/deepkit": "^0.5.
|
|
122
|
-
"@powerlines/plugin-tsc": "^0.2.
|
|
123
|
-
"powerlines": "^0.36.
|
|
121
|
+
"@powerlines/deepkit": "^0.5.40",
|
|
122
|
+
"@powerlines/plugin-tsc": "^0.2.133",
|
|
123
|
+
"powerlines": "^0.36.29",
|
|
124
124
|
"typescript": "^5.9.3"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
|
-
"@powerlines/nx": "^0.11.
|
|
127
|
+
"@powerlines/nx": "^0.11.55",
|
|
128
128
|
"@types/node": "^24.10.4"
|
|
129
129
|
},
|
|
130
130
|
"publishConfig": { "access": "public" },
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "bfbde2cda62a5307013bf11d1ef6a8500bcbc4b1"
|
|
132
132
|
}
|