@powerlines/plugin-deepkit 0.11.75 → 0.11.76
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.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/{plugin-BS9iTMUd.d.cts → plugin-Da600g99.d.mts} +9 -10
- package/dist/{plugin-gvbZ2WfY.d.mts → plugin-zTh_eD4-.d.cts} +8 -11
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/plugin.d.cts +1 -1
- package/dist/types/plugin.d.mts +1 -1
- package/package.json +6 -6
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, l as Plugin, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "./plugin-
|
|
1
|
+
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, l as Plugin, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "./plugin-zTh_eD4-.cjs";
|
|
2
2
|
import "./index-CEgs-Dz2.cjs";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, l as Plugin, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "./plugin-
|
|
1
|
+
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, l as Plugin, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "./plugin-Da600g99.mjs";
|
|
2
2
|
import "./index-BgAdqTbb.mjs";
|
|
3
3
|
|
|
4
4
|
//#region src/index.d.ts
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "node:module";
|
|
1
2
|
import { ArrayValues } from "@stryke/types/array";
|
|
2
3
|
import { AnyFunction, MaybePromise, NonUndefined } from "@stryke/types/base";
|
|
3
4
|
import { LoadResult, OutputOptions, RollupOptions } from "rollup";
|
|
@@ -828,15 +829,6 @@ interface OutputConfig {
|
|
|
828
829
|
* @defaultValue "\{projectRoot\}/powerlines.d.ts"
|
|
829
830
|
*/
|
|
830
831
|
dts?: string | false;
|
|
831
|
-
/**
|
|
832
|
-
* A prefix to use for identifying builtin modules
|
|
833
|
-
*
|
|
834
|
-
* @remarks
|
|
835
|
-
* This prefix will be used to identify all builtin modules generated during the "prepare" phase. An example builtin ID for a module called `"utils"` would be `"{builtinPrefix}:utils"`.
|
|
836
|
-
*
|
|
837
|
-
* @defaultValue "powerlines"
|
|
838
|
-
*/
|
|
839
|
-
builtinPrefix?: string;
|
|
840
832
|
/**
|
|
841
833
|
* The module format of the output files
|
|
842
834
|
*
|
|
@@ -1072,7 +1064,7 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
1072
1064
|
* A string identifier that allows a child framework or tool to identify itself when using Powerlines.
|
|
1073
1065
|
*
|
|
1074
1066
|
* @remarks
|
|
1075
|
-
* If no values are provided for {@link OutputConfig.dts | output.dts}
|
|
1067
|
+
* If no values are provided for {@link OutputConfig.dts | output.dts} or {@link OutputConfig.artifactsPath | output.artifactsFolder}, this value will be used as the default.
|
|
1076
1068
|
*
|
|
1077
1069
|
* @defaultValue "powerlines"
|
|
1078
1070
|
*/
|
|
@@ -1486,6 +1478,13 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
1486
1478
|
* The builtin module id that exist in the Powerlines virtual file system
|
|
1487
1479
|
*/
|
|
1488
1480
|
builtins: string[];
|
|
1481
|
+
/**
|
|
1482
|
+
* The alias mappings for the project used during module resolution
|
|
1483
|
+
*
|
|
1484
|
+
* @remarks
|
|
1485
|
+
* This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
|
|
1486
|
+
*/
|
|
1487
|
+
alias: Record<string, string>;
|
|
1489
1488
|
/**
|
|
1490
1489
|
* The {@link Project} instance used for type reflection and module manipulation
|
|
1491
1490
|
*
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import "node:module";
|
|
2
1
|
import { ArrayValues } from "@stryke/types/array";
|
|
3
2
|
import { AnyFunction, MaybePromise, NonUndefined } from "@stryke/types/base";
|
|
4
3
|
import { LoadResult, OutputOptions, RollupOptions } from "rollup";
|
|
@@ -829,15 +828,6 @@ interface OutputConfig {
|
|
|
829
828
|
* @defaultValue "\{projectRoot\}/powerlines.d.ts"
|
|
830
829
|
*/
|
|
831
830
|
dts?: string | false;
|
|
832
|
-
/**
|
|
833
|
-
* A prefix to use for identifying builtin modules
|
|
834
|
-
*
|
|
835
|
-
* @remarks
|
|
836
|
-
* This prefix will be used to identify all builtin modules generated during the "prepare" phase. An example builtin ID for a module called `"utils"` would be `"{builtinPrefix}:utils"`.
|
|
837
|
-
*
|
|
838
|
-
* @defaultValue "powerlines"
|
|
839
|
-
*/
|
|
840
|
-
builtinPrefix?: string;
|
|
841
831
|
/**
|
|
842
832
|
* The module format of the output files
|
|
843
833
|
*
|
|
@@ -1073,7 +1063,7 @@ interface CommonUserConfig extends BaseConfig {
|
|
|
1073
1063
|
* A string identifier that allows a child framework or tool to identify itself when using Powerlines.
|
|
1074
1064
|
*
|
|
1075
1065
|
* @remarks
|
|
1076
|
-
* If no values are provided for {@link OutputConfig.dts | output.dts}
|
|
1066
|
+
* If no values are provided for {@link OutputConfig.dts | output.dts} or {@link OutputConfig.artifactsPath | output.artifactsFolder}, this value will be used as the default.
|
|
1077
1067
|
*
|
|
1078
1068
|
* @defaultValue "powerlines"
|
|
1079
1069
|
*/
|
|
@@ -1487,6 +1477,13 @@ interface UnresolvedContext<TResolvedConfig extends ResolvedConfig = ResolvedCon
|
|
|
1487
1477
|
* The builtin module id that exist in the Powerlines virtual file system
|
|
1488
1478
|
*/
|
|
1489
1479
|
builtins: string[];
|
|
1480
|
+
/**
|
|
1481
|
+
* The alias mappings for the project used during module resolution
|
|
1482
|
+
*
|
|
1483
|
+
* @remarks
|
|
1484
|
+
* This includes both the built-in module aliases as well as any custom aliases defined in the build configuration.
|
|
1485
|
+
*/
|
|
1486
|
+
alias: Record<string, string>;
|
|
1490
1487
|
/**
|
|
1491
1488
|
* The {@link Project} instance used for type reflection and module manipulation
|
|
1492
1489
|
*
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-zTh_eD4-.cjs";
|
|
2
2
|
import "../index-CEgs-Dz2.cjs";
|
|
3
3
|
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, __ΩDeepkitPluginContext, __ΩDeepkitPluginOptions, __ΩDeepkitPluginResolvedConfig, __ΩDeepkitPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-Da600g99.mjs";
|
|
2
2
|
import "../index-BgAdqTbb.mjs";
|
|
3
3
|
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, __ΩDeepkitPluginContext, __ΩDeepkitPluginOptions, __ΩDeepkitPluginResolvedConfig, __ΩDeepkitPluginUserConfig };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-zTh_eD4-.cjs";
|
|
2
2
|
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, __ΩDeepkitPluginContext, __ΩDeepkitPluginOptions, __ΩDeepkitPluginResolvedConfig, __ΩDeepkitPluginUserConfig };
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-
|
|
1
|
+
import { a as __ΩDeepkitPluginContext, c as __ΩDeepkitPluginUserConfig, i as DeepkitPluginUserConfig, n as DeepkitPluginOptions, o as __ΩDeepkitPluginOptions, r as DeepkitPluginResolvedConfig, s as __ΩDeepkitPluginResolvedConfig, t as DeepkitPluginContext } from "../plugin-Da600g99.mjs";
|
|
2
2
|
export { DeepkitPluginContext, DeepkitPluginOptions, DeepkitPluginResolvedConfig, DeepkitPluginUserConfig, __ΩDeepkitPluginContext, __ΩDeepkitPluginOptions, __ΩDeepkitPluginResolvedConfig, __ΩDeepkitPluginUserConfig };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-deepkit",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.76",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -117,16 +117,16 @@
|
|
|
117
117
|
"files": ["dist/**/*"],
|
|
118
118
|
"keywords": ["deepkit", "powerlines", "storm-software", "powerlines-plugin"],
|
|
119
119
|
"dependencies": {
|
|
120
|
-
"@powerlines/deepkit": "^0.5.
|
|
121
|
-
"@powerlines/plugin-tsc": "^0.2.
|
|
120
|
+
"@powerlines/deepkit": "^0.5.115",
|
|
121
|
+
"@powerlines/plugin-tsc": "^0.2.206",
|
|
122
122
|
"@stryke/json": "^0.9.38",
|
|
123
|
-
"powerlines": "^0.37.
|
|
123
|
+
"powerlines": "^0.37.72",
|
|
124
124
|
"typescript": "^5.9.3"
|
|
125
125
|
},
|
|
126
126
|
"devDependencies": {
|
|
127
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
127
|
+
"@powerlines/plugin-plugin": "^0.12.150",
|
|
128
128
|
"@types/node": "^24.10.9"
|
|
129
129
|
},
|
|
130
130
|
"publishConfig": { "access": "public" },
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "458556ca7def9536d1c1fbd770e005a004d0a513"
|
|
132
132
|
}
|