@powerlines/plugin-deepkit 0.11.552 → 0.11.554
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 +2 -31
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +3 -3
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -1,35 +1,7 @@
|
|
|
1
|
-
Object.
|
|
2
|
-
//#region \0rolldown/runtime.js
|
|
3
|
-
var __create = Object.create;
|
|
4
|
-
var __defProp = Object.defineProperty;
|
|
5
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
8
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
9
|
-
var __copyProps = (to, from, except, desc) => {
|
|
10
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
11
|
-
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
12
|
-
key = keys[i];
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
14
|
-
__defProp(to, key, {
|
|
15
|
-
get: ((k) => from[k]).bind(null, key),
|
|
16
|
-
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
}
|
|
20
|
-
}
|
|
21
|
-
return to;
|
|
22
|
-
};
|
|
23
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule || !__hasOwnProp.call(mod, "default") ? __defProp(target, "default", {
|
|
24
|
-
value: mod,
|
|
25
|
-
enumerable: true
|
|
26
|
-
}) : target, mod));
|
|
27
|
-
|
|
28
|
-
//#endregion
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
29
2
|
require('./types/index.cjs');
|
|
30
3
|
let _power_plant_schema_deepkit = require("@power-plant/schema/deepkit");
|
|
31
4
|
let _powerlines_plugin_tsc = require("@powerlines/plugin-tsc");
|
|
32
|
-
_powerlines_plugin_tsc = __toESM(_powerlines_plugin_tsc, 1);
|
|
33
5
|
let _stryke_path_append = require("@stryke/path/append");
|
|
34
6
|
|
|
35
7
|
//#region src/index.ts
|
|
@@ -40,7 +12,7 @@ let _stryke_path_append = require("@stryke/path/append");
|
|
|
40
12
|
* @returns A Powerlines plugin that integrates Deepkit transformations.
|
|
41
13
|
*/
|
|
42
14
|
const plugin = (options = {}) => {
|
|
43
|
-
return [(0, _powerlines_plugin_tsc.
|
|
15
|
+
return [(0, _powerlines_plugin_tsc.plugin)({
|
|
44
16
|
order: "pre",
|
|
45
17
|
...options
|
|
46
18
|
}), {
|
|
@@ -71,5 +43,4 @@ const plugin = (options = {}) => {
|
|
|
71
43
|
};
|
|
72
44
|
|
|
73
45
|
//#endregion
|
|
74
|
-
exports.default = plugin;
|
|
75
46
|
exports.plugin = plugin;
|
package/dist/index.d.cts
CHANGED
|
@@ -15,5 +15,5 @@ declare module "powerlines" {
|
|
|
15
15
|
*/
|
|
16
16
|
declare const plugin: <TContext extends DeepkitPluginContext = DeepkitPluginContext>(options?: DeepkitPluginOptions) => Plugin<TContext>[];
|
|
17
17
|
//#endregion
|
|
18
|
-
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, plugin
|
|
18
|
+
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, plugin };
|
|
19
19
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.mts
CHANGED
|
@@ -15,5 +15,5 @@ declare module "powerlines" {
|
|
|
15
15
|
*/
|
|
16
16
|
declare const plugin: <TContext extends DeepkitPluginContext = DeepkitPluginContext>(options?: DeepkitPluginOptions) => Plugin<TContext>[];
|
|
17
17
|
//#endregion
|
|
18
|
-
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, plugin
|
|
18
|
+
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, plugin };
|
|
19
19
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "./types/index.mjs";
|
|
2
2
|
import { declarationTransformer, transformer } from "@power-plant/schema/deepkit";
|
|
3
|
-
import
|
|
3
|
+
import { plugin as plugin$1 } from "@powerlines/plugin-tsc";
|
|
4
4
|
import { appendPath } from "@stryke/path/append";
|
|
5
5
|
|
|
6
6
|
//#region src/index.ts
|
|
@@ -11,7 +11,7 @@ import { appendPath } from "@stryke/path/append";
|
|
|
11
11
|
* @returns A Powerlines plugin that integrates Deepkit transformations.
|
|
12
12
|
*/
|
|
13
13
|
const plugin = (options = {}) => {
|
|
14
|
-
return [
|
|
14
|
+
return [plugin$1({
|
|
15
15
|
order: "pre",
|
|
16
16
|
...options
|
|
17
17
|
}), {
|
|
@@ -42,5 +42,5 @@ const plugin = (options = {}) => {
|
|
|
42
42
|
};
|
|
43
43
|
|
|
44
44
|
//#endregion
|
|
45
|
-
export { plugin
|
|
45
|
+
export { plugin };
|
|
46
46
|
//# sourceMappingURL=index.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-deepkit",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.554",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -91,16 +91,16 @@
|
|
|
91
91
|
"keywords": ["deepkit", "powerlines", "powerlines-plugin"],
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"@power-plant/schema": "^0.0.87",
|
|
94
|
-
"@powerlines/plugin-tsc": "^0.3.
|
|
94
|
+
"@powerlines/plugin-tsc": "^0.3.208",
|
|
95
95
|
"@stryke/json": "^0.15.32",
|
|
96
96
|
"@stryke/path": "^0.29.35",
|
|
97
|
-
"powerlines": "^0.47.
|
|
97
|
+
"powerlines": "^0.47.210",
|
|
98
98
|
"typescript": "^6.0.3"
|
|
99
99
|
},
|
|
100
100
|
"devDependencies": {
|
|
101
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
101
|
+
"@powerlines/plugin-plugin": "^0.12.623",
|
|
102
102
|
"@types/node": "^25.9.5"
|
|
103
103
|
},
|
|
104
104
|
"publishConfig": { "access": "public" },
|
|
105
|
-
"gitHead": "
|
|
105
|
+
"gitHead": "4ee69b33975e2fa912d2c73700dc7e949f25b2d4"
|
|
106
106
|
}
|