@powerlines/plugin-plugin 0.12.298 → 0.12.300
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/README.md +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.cts +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/plugin.d.cts +35 -2
- package/dist/types/plugin.d.cts.map +1 -0
- package/dist/types/plugin.d.mts +35 -2
- package/dist/types/plugin.d.mts.map +1 -0
- package/package.json +7 -6
- package/dist/plugin-DuAIRpTH.d.mts +0 -60
- package/dist/plugin-DuAIRpTH.d.mts.map +0 -1
- package/dist/plugin-wakFSxZn.d.cts +0 -60
- package/dist/plugin-wakFSxZn.d.cts.map +0 -1
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>🔌 Powerlines</b> monorepo. Powerlines is the "
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://stormsoftware.com/projects/powerlines) [](http://commitizen.github.io/cz-cli/)  
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.mts
CHANGED
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport tsdown from \"@powerlines/plugin-tsdown\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport { Plugin } from \"powerlines\";\nimport type { PluginPluginContext, PluginPluginOptions } from \"./types/plugin\";\n\ndeclare module \"powerlines\" {\n interface Config {\n plugin?: PluginPluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to assist in developing other Powerlines plugins.\n */\nexport const plugin = <\n TContext extends PluginPluginContext = PluginPluginContext\n>(\n options: PluginPluginOptions = {}\n): Plugin<TContext>[] => {\n return [\n tsdown(options),\n {\n name: \"plugin\",\n config() {\n this.debug(\n \"Providing default configuration for the Powerlines plugin.\"\n );\n\n return {\n type: \"library\",\n output: {\n format: [\"cjs\", \"esm\"],\n dts: true\n },\n resolve: {\n external: [\"powerlines\", /^powerlines\\/.*$/, /^@powerlines\\//]\n },\n tsdown: {\n platform: \"node\",\n target: \"node22\",\n nodeProtocol: true,\n fixedExtension: true,\n minify: false,\n exports: true,\n unbundle: true\n }\n };\n },\n async configResolved() {\n if (\n !this.config.input ||\n (Array.isArray(this.config.input) && this.config.input.length === 0)\n ) {\n let input = \"src/index.tsx\";\n if (!this.fs.existsSync(joinPaths(this.config.root, input))) {\n input = \"src/index.ts\";\n }\n\n this.config.input = input;\n }\n }\n }\n ];\n};\n\nexport default plugin;\n"],"mappings":"uFAgCA,MAAa,GAGX,EAA+B,EAAE,GAE1B,CACL,EAAO,EAAQ,CACf,CACE,KAAM,SACN,QAAS,CAKP,OAJA,KAAK,MACH,6DACD,CAEM,CACL,KAAM,UACN,OAAQ,CACN,OAAQ,CAAC,MAAO,MAAM,CACtB,IAAK,GACN,CACD,QAAS,CACP,SAAU,CAAC,aAAc,mBAAoB,iBAAiB,CAC/D,CACD,OAAQ,CACN,SAAU,OACV,OAAQ,SACR,aAAc,GACd,eAAgB,GAChB,OAAQ,GACR,QAAS,GACT,SAAU,GACX,CACF,EAEH,MAAM,gBAAiB,CACrB,GACE,CAAC,KAAK,OAAO,OACZ,MAAM,QAAQ,KAAK,OAAO,MAAM,EAAI,KAAK,OAAO,MAAM,SAAW,EAClE,CACA,IAAI,EAAQ,gBACP,KAAK,GAAG,WAAW,EAAU,KAAK,OAAO,KAAM,EAAM,CAAC,GACzD,EAAQ,gBAGV,KAAK,OAAO,MAAQ,IAGzB,CACF"}
|
|
1
|
+
{"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport tsdown from \"@powerlines/plugin-tsdown\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport type { Plugin } from \"powerlines\";\nimport type { PluginPluginContext, PluginPluginOptions } from \"./types/plugin\";\n\ndeclare module \"powerlines\" {\n interface Config {\n plugin?: PluginPluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to assist in developing other Powerlines plugins.\n */\nexport const plugin = <\n TContext extends PluginPluginContext = PluginPluginContext\n>(\n options: PluginPluginOptions = {}\n): Plugin<TContext>[] => {\n return [\n tsdown(options),\n {\n name: \"plugin\",\n config() {\n this.debug(\n \"Providing default configuration for the Powerlines plugin.\"\n );\n\n return {\n type: \"library\",\n output: {\n format: [\"cjs\", \"esm\"],\n dts: true\n },\n resolve: {\n external: [\"powerlines\", /^powerlines\\/.*$/, /^@powerlines\\//]\n },\n tsdown: {\n platform: \"node\",\n target: \"node22\",\n nodeProtocol: true,\n fixedExtension: true,\n minify: false,\n exports: true,\n unbundle: true\n }\n };\n },\n async configResolved() {\n if (\n !this.config.input ||\n (Array.isArray(this.config.input) && this.config.input.length === 0)\n ) {\n let input = \"src/index.tsx\";\n if (!this.fs.existsSync(joinPaths(this.config.root, input))) {\n input = \"src/index.ts\";\n }\n\n this.config.input = input;\n }\n }\n }\n ];\n};\n\nexport default plugin;\n"],"mappings":"uFAgCA,MAAa,GAGX,EAA+B,EAAE,GAE1B,CACL,EAAO,EAAQ,CACf,CACE,KAAM,SACN,QAAS,CAKP,OAJA,KAAK,MACH,6DACD,CAEM,CACL,KAAM,UACN,OAAQ,CACN,OAAQ,CAAC,MAAO,MAAM,CACtB,IAAK,GACN,CACD,QAAS,CACP,SAAU,CAAC,aAAc,mBAAoB,iBAAiB,CAC/D,CACD,OAAQ,CACN,SAAU,OACV,OAAQ,SACR,aAAc,GACd,eAAgB,GAChB,OAAQ,GACR,QAAS,GACT,SAAU,GACX,CACF,EAEH,MAAM,gBAAiB,CACrB,GACE,CAAC,KAAK,OAAO,OACZ,MAAM,QAAQ,KAAK,OAAO,MAAM,EAAI,KAAK,OAAO,MAAM,SAAW,EAClE,CACA,IAAI,EAAQ,gBACP,KAAK,GAAG,WAAW,EAAU,KAAK,OAAO,KAAM,EAAM,CAAC,GACzD,EAAQ,gBAGV,KAAK,OAAO,MAAQ,IAGzB,CACF"}
|
package/dist/types/index.d.cts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PluginPluginContext, PluginPluginOptions, PluginPluginResolvedConfig, PluginPluginTypesOptions, PluginPluginUserConfig, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig } from "./plugin.cjs";
|
|
2
2
|
export { PluginPluginContext, PluginPluginOptions, PluginPluginResolvedConfig, PluginPluginTypesOptions, PluginPluginUserConfig, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig };
|
package/dist/types/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PluginPluginContext, PluginPluginOptions, PluginPluginResolvedConfig, PluginPluginTypesOptions, PluginPluginUserConfig, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig } from "./plugin.mjs";
|
|
2
2
|
export { PluginPluginContext, PluginPluginOptions, PluginPluginResolvedConfig, PluginPluginTypesOptions, PluginPluginUserConfig, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig };
|
package/dist/types/plugin.d.cts
CHANGED
|
@@ -1,2 +1,35 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { TsdownPluginContext, TsdownPluginOptions, TsdownPluginResolvedConfig, TsdownPluginUserConfig } from "@powerlines/plugin-tsdown";
|
|
2
|
+
import { TypeDefinitionParameter } from "@stryke/types/configuration";
|
|
3
|
+
|
|
4
|
+
//#region src/types/plugin.d.ts
|
|
5
|
+
interface PluginPluginTypesOptions {
|
|
6
|
+
/**
|
|
7
|
+
* The type definition for the plugin's options.
|
|
8
|
+
*/
|
|
9
|
+
options?: TypeDefinitionParameter;
|
|
10
|
+
/**
|
|
11
|
+
* The type definition for the plugin's user config.
|
|
12
|
+
*/
|
|
13
|
+
userConfig?: TypeDefinitionParameter;
|
|
14
|
+
}
|
|
15
|
+
interface PluginPluginOptions extends TsdownPluginOptions {
|
|
16
|
+
/**
|
|
17
|
+
* The type definitions for the Plugin plugin.
|
|
18
|
+
*/
|
|
19
|
+
types?: PluginPluginTypesOptions;
|
|
20
|
+
}
|
|
21
|
+
interface PluginPluginUserConfig extends TsdownPluginUserConfig {
|
|
22
|
+
plugin?: PluginPluginOptions;
|
|
23
|
+
}
|
|
24
|
+
interface PluginPluginResolvedConfig extends TsdownPluginResolvedConfig {
|
|
25
|
+
plugin: PluginPluginOptions;
|
|
26
|
+
}
|
|
27
|
+
type PluginPluginContext<TResolvedConfig extends PluginPluginResolvedConfig = PluginPluginResolvedConfig> = TsdownPluginContext<TResolvedConfig>;
|
|
28
|
+
declare type __ΩPluginPluginTypesOptions = any[];
|
|
29
|
+
declare type __ΩPluginPluginOptions = any[];
|
|
30
|
+
declare type __ΩPluginPluginUserConfig = any[];
|
|
31
|
+
declare type __ΩPluginPluginResolvedConfig = any[];
|
|
32
|
+
declare type __ΩPluginPluginContext = any[];
|
|
33
|
+
//#endregion
|
|
34
|
+
export { PluginPluginContext, PluginPluginOptions, PluginPluginResolvedConfig, PluginPluginTypesOptions, PluginPluginUserConfig, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig };
|
|
35
|
+
//# sourceMappingURL=plugin.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;UA0BiB,wBAAA;;AAAjB;;EAIE,OAAA,GAAU,uBAAA;EAK0B;;;EAApC,UAAA,GAAa,uBAAA;AAAA;AAAA,UAGE,mBAAA,SAA4B,mBAAA;EAHP;AAGtC;;EAIE,KAAA,GAAQ,wBAAA;AAAA;AAAA,UAGO,sBAAA,SAA+B,sBAAA;EAC9C,MAAA,GAAS,mBAAA;AAAA;AAAA,UAGM,0BAAA,SAAmC,0BAAA;EAClD,MAAA,EAAQ,mBAAA;AAAA;AAAA,KAGE,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,mBAAA,CAAoB,eAAA;AAAA"}
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -1,2 +1,35 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { TsdownPluginContext, TsdownPluginOptions, TsdownPluginResolvedConfig, TsdownPluginUserConfig } from "@powerlines/plugin-tsdown";
|
|
2
|
+
import { TypeDefinitionParameter } from "@stryke/types/configuration";
|
|
3
|
+
|
|
4
|
+
//#region src/types/plugin.d.ts
|
|
5
|
+
interface PluginPluginTypesOptions {
|
|
6
|
+
/**
|
|
7
|
+
* The type definition for the plugin's options.
|
|
8
|
+
*/
|
|
9
|
+
options?: TypeDefinitionParameter;
|
|
10
|
+
/**
|
|
11
|
+
* The type definition for the plugin's user config.
|
|
12
|
+
*/
|
|
13
|
+
userConfig?: TypeDefinitionParameter;
|
|
14
|
+
}
|
|
15
|
+
interface PluginPluginOptions extends TsdownPluginOptions {
|
|
16
|
+
/**
|
|
17
|
+
* The type definitions for the Plugin plugin.
|
|
18
|
+
*/
|
|
19
|
+
types?: PluginPluginTypesOptions;
|
|
20
|
+
}
|
|
21
|
+
interface PluginPluginUserConfig extends TsdownPluginUserConfig {
|
|
22
|
+
plugin?: PluginPluginOptions;
|
|
23
|
+
}
|
|
24
|
+
interface PluginPluginResolvedConfig extends TsdownPluginResolvedConfig {
|
|
25
|
+
plugin: PluginPluginOptions;
|
|
26
|
+
}
|
|
27
|
+
type PluginPluginContext<TResolvedConfig extends PluginPluginResolvedConfig = PluginPluginResolvedConfig> = TsdownPluginContext<TResolvedConfig>;
|
|
28
|
+
declare type __ΩPluginPluginTypesOptions = any[];
|
|
29
|
+
declare type __ΩPluginPluginOptions = any[];
|
|
30
|
+
declare type __ΩPluginPluginUserConfig = any[];
|
|
31
|
+
declare type __ΩPluginPluginResolvedConfig = any[];
|
|
32
|
+
declare type __ΩPluginPluginContext = any[];
|
|
33
|
+
//#endregion
|
|
34
|
+
export { PluginPluginContext, PluginPluginOptions, PluginPluginResolvedConfig, PluginPluginTypesOptions, PluginPluginUserConfig, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig };
|
|
35
|
+
//# sourceMappingURL=plugin.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"mappings":";;;;UA0BiB,wBAAA;;AAAjB;;EAIE,OAAA,GAAU,uBAAA;EAK0B;;;EAApC,UAAA,GAAa,uBAAA;AAAA;AAAA,UAGE,mBAAA,SAA4B,mBAAA;EAHP;AAGtC;;EAIE,KAAA,GAAQ,wBAAA;AAAA;AAAA,UAGO,sBAAA,SAA+B,sBAAA;EAC9C,MAAA,GAAS,mBAAA;AAAA;AAAA,UAGM,0BAAA,SAAmC,0BAAA;EAClD,MAAA,EAAQ,mBAAA;AAAA;AAAA,KAGE,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,mBAAA,CAAoB,eAAA;AAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-plugin",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.300",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
|
|
6
6
|
"repository": {
|
|
@@ -117,11 +117,12 @@
|
|
|
117
117
|
"files": ["dist/**/*"],
|
|
118
118
|
"keywords": ["powerlines", "storm-software", "powerlines-plugin"],
|
|
119
119
|
"dependencies": {
|
|
120
|
-
"@stryke/path": "^0.
|
|
121
|
-
"
|
|
122
|
-
"
|
|
120
|
+
"@stryke/path": "^0.27.0",
|
|
121
|
+
"@stryke/types": "^0.10.53",
|
|
122
|
+
"powerlines": "^0.41.14",
|
|
123
|
+
"@powerlines/plugin-tsdown": "^0.1.297"
|
|
123
124
|
},
|
|
124
|
-
"devDependencies": { "@
|
|
125
|
+
"devDependencies": { "@types/node": "^25.5.0" },
|
|
125
126
|
"publishConfig": { "access": "public" },
|
|
126
|
-
"gitHead": "
|
|
127
|
+
"gitHead": "369e884879e82b75feffe7cfd91c78584accb1d2"
|
|
127
128
|
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { TsdownPluginContext, TsdownPluginOptions, TsdownPluginResolvedConfig, TsdownPluginUserConfig } from "@powerlines/plugin-tsdown";
|
|
2
|
-
|
|
3
|
-
//#region ../../node_modules/.pnpm/@stryke+types@0.10.52/node_modules/@stryke/types/dist/configuration.d.cts
|
|
4
|
-
//#region src/configuration.d.ts
|
|
5
|
-
/**
|
|
6
|
-
* Configuration values for specifying a type definition
|
|
7
|
-
*/
|
|
8
|
-
interface TypeDefinition {
|
|
9
|
-
/**
|
|
10
|
-
* The file path to the type definition
|
|
11
|
-
*/
|
|
12
|
-
file: string;
|
|
13
|
-
/**
|
|
14
|
-
* The name of the type definition in the file above
|
|
15
|
-
*
|
|
16
|
-
* @remarks
|
|
17
|
-
* If no value is provided, we will attempt to infer the type definition from the module's `default` export.
|
|
18
|
-
*/
|
|
19
|
-
name?: string;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Configuration parameter for the {@link TypeDefinition} utility type
|
|
23
|
-
*
|
|
24
|
-
* @remarks
|
|
25
|
-
* When provided as a string, this value can include both a path to the typescript file and the name of the type definition to use separated by a `":"` or `"#"` character. For example: `"./src/types/env.ts#EnvConfiguration"`.
|
|
26
|
-
*/
|
|
27
|
-
type TypeDefinitionParameter = TypeDefinition | string;
|
|
28
|
-
//#endregion
|
|
29
|
-
//#region src/types/plugin.d.ts
|
|
30
|
-
interface PluginPluginTypesOptions {
|
|
31
|
-
/**
|
|
32
|
-
* The type definition for the plugin's options.
|
|
33
|
-
*/
|
|
34
|
-
options?: TypeDefinitionParameter;
|
|
35
|
-
/**
|
|
36
|
-
* The type definition for the plugin's user config.
|
|
37
|
-
*/
|
|
38
|
-
userConfig?: TypeDefinitionParameter;
|
|
39
|
-
}
|
|
40
|
-
interface PluginPluginOptions extends TsdownPluginOptions {
|
|
41
|
-
/**
|
|
42
|
-
* The type definitions for the Plugin plugin.
|
|
43
|
-
*/
|
|
44
|
-
types?: PluginPluginTypesOptions;
|
|
45
|
-
}
|
|
46
|
-
interface PluginPluginUserConfig extends TsdownPluginUserConfig {
|
|
47
|
-
plugin?: PluginPluginOptions;
|
|
48
|
-
}
|
|
49
|
-
interface PluginPluginResolvedConfig extends TsdownPluginResolvedConfig {
|
|
50
|
-
plugin: PluginPluginOptions;
|
|
51
|
-
}
|
|
52
|
-
type PluginPluginContext<TResolvedConfig extends PluginPluginResolvedConfig = PluginPluginResolvedConfig> = TsdownPluginContext<TResolvedConfig>;
|
|
53
|
-
declare type __ΩPluginPluginTypesOptions = any[];
|
|
54
|
-
declare type __ΩPluginPluginOptions = any[];
|
|
55
|
-
declare type __ΩPluginPluginUserConfig = any[];
|
|
56
|
-
declare type __ΩPluginPluginResolvedConfig = any[];
|
|
57
|
-
declare type __ΩPluginPluginContext = any[];
|
|
58
|
-
//#endregion
|
|
59
|
-
export { PluginPluginUserConfig as a, __ΩPluginPluginResolvedConfig as c, PluginPluginTypesOptions as i, __ΩPluginPluginTypesOptions as l, PluginPluginOptions as n, __ΩPluginPluginContext as o, PluginPluginResolvedConfig as r, __ΩPluginPluginOptions as s, PluginPluginContext as t, __ΩPluginPluginUserConfig as u };
|
|
60
|
-
//# sourceMappingURL=plugin-DuAIRpTH.d.mts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-DuAIRpTH.d.mts","names":["TypeDefinition","file","name","TypeDefinitionParameter","DotenvTypeDefinitions","variables","secrets","DotenvConfiguration","additionalFiles","types","StormConfigurationGroups","dotenv"],"sources":["../../../node_modules/.pnpm/@stryke+types@0.10.52/node_modules/@stryke/types/dist/configuration.d.cts","../src/types/plugin.ts"],"x_google_ignoreList":[0],"mappings":";;;;;;;UAIUA,cAAAA;;;;EAIRC,IAAAA;EAe0B;;;;;;EAR1BC,IAAAA;AAAAA;;;;;;;KAQGC,uBAAAA,GAA0BH,cAAAA;;;UCGd,wBAAA;EDtBPA;;;EC0BR,OAAA,GAAU,uBAAA;EDfN;AAAA;;ECoBJ,UAAA,GAAa,uBAAA;AAAA;AAAA,UAGE,mBAAA,SAA4B,mBAAA;;;;EAI3C,KAAA,GAAQ,wBAAA;AAAA;AAAA,UAGO,sBAAA,SAA+B,sBAAA;EAC9C,MAAA,GAAS,mBAAA;AAAA;AAAA,UAGM,0BAAA,SAAmC,0BAAA;EAClD,MAAA,EAAQ,mBAAA;AAAA;AAAA,KAGE,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,mBAAA,CAAoB,eAAA;AAAA"}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
import { TsdownPluginContext, TsdownPluginOptions, TsdownPluginResolvedConfig, TsdownPluginUserConfig } from "@powerlines/plugin-tsdown";
|
|
2
|
-
|
|
3
|
-
//#region ../../node_modules/.pnpm/@stryke+types@0.10.52/node_modules/@stryke/types/dist/configuration.d.cts
|
|
4
|
-
//#region src/configuration.d.ts
|
|
5
|
-
/**
|
|
6
|
-
* Configuration values for specifying a type definition
|
|
7
|
-
*/
|
|
8
|
-
interface TypeDefinition {
|
|
9
|
-
/**
|
|
10
|
-
* The file path to the type definition
|
|
11
|
-
*/
|
|
12
|
-
file: string;
|
|
13
|
-
/**
|
|
14
|
-
* The name of the type definition in the file above
|
|
15
|
-
*
|
|
16
|
-
* @remarks
|
|
17
|
-
* If no value is provided, we will attempt to infer the type definition from the module's `default` export.
|
|
18
|
-
*/
|
|
19
|
-
name?: string;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Configuration parameter for the {@link TypeDefinition} utility type
|
|
23
|
-
*
|
|
24
|
-
* @remarks
|
|
25
|
-
* When provided as a string, this value can include both a path to the typescript file and the name of the type definition to use separated by a `":"` or `"#"` character. For example: `"./src/types/env.ts#EnvConfiguration"`.
|
|
26
|
-
*/
|
|
27
|
-
type TypeDefinitionParameter = TypeDefinition | string;
|
|
28
|
-
//#endregion
|
|
29
|
-
//#region src/types/plugin.d.ts
|
|
30
|
-
interface PluginPluginTypesOptions {
|
|
31
|
-
/**
|
|
32
|
-
* The type definition for the plugin's options.
|
|
33
|
-
*/
|
|
34
|
-
options?: TypeDefinitionParameter;
|
|
35
|
-
/**
|
|
36
|
-
* The type definition for the plugin's user config.
|
|
37
|
-
*/
|
|
38
|
-
userConfig?: TypeDefinitionParameter;
|
|
39
|
-
}
|
|
40
|
-
interface PluginPluginOptions extends TsdownPluginOptions {
|
|
41
|
-
/**
|
|
42
|
-
* The type definitions for the Plugin plugin.
|
|
43
|
-
*/
|
|
44
|
-
types?: PluginPluginTypesOptions;
|
|
45
|
-
}
|
|
46
|
-
interface PluginPluginUserConfig extends TsdownPluginUserConfig {
|
|
47
|
-
plugin?: PluginPluginOptions;
|
|
48
|
-
}
|
|
49
|
-
interface PluginPluginResolvedConfig extends TsdownPluginResolvedConfig {
|
|
50
|
-
plugin: PluginPluginOptions;
|
|
51
|
-
}
|
|
52
|
-
type PluginPluginContext<TResolvedConfig extends PluginPluginResolvedConfig = PluginPluginResolvedConfig> = TsdownPluginContext<TResolvedConfig>;
|
|
53
|
-
declare type __ΩPluginPluginTypesOptions = any[];
|
|
54
|
-
declare type __ΩPluginPluginOptions = any[];
|
|
55
|
-
declare type __ΩPluginPluginUserConfig = any[];
|
|
56
|
-
declare type __ΩPluginPluginResolvedConfig = any[];
|
|
57
|
-
declare type __ΩPluginPluginContext = any[];
|
|
58
|
-
//#endregion
|
|
59
|
-
export { PluginPluginUserConfig as a, __ΩPluginPluginResolvedConfig as c, PluginPluginTypesOptions as i, __ΩPluginPluginTypesOptions as l, PluginPluginOptions as n, __ΩPluginPluginContext as o, PluginPluginResolvedConfig as r, __ΩPluginPluginOptions as s, PluginPluginContext as t, __ΩPluginPluginUserConfig as u };
|
|
60
|
-
//# sourceMappingURL=plugin-wakFSxZn.d.cts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-wakFSxZn.d.cts","names":["TypeDefinition","file","name","TypeDefinitionParameter","DotenvTypeDefinitions","variables","secrets","DotenvConfiguration","additionalFiles","types","StormConfigurationGroups","dotenv"],"sources":["../../../node_modules/.pnpm/@stryke+types@0.10.52/node_modules/@stryke/types/dist/configuration.d.cts","../src/types/plugin.ts"],"x_google_ignoreList":[0],"mappings":";;;;;;;UAIUA,cAAAA;;;;EAIRC,IAAAA;EAe0B;;;;;;EAR1BC,IAAAA;AAAAA;;;;;;;KAQGC,uBAAAA,GAA0BH,cAAAA;;;UCGd,wBAAA;EDtBPA;;;EC0BR,OAAA,GAAU,uBAAA;EDfN;AAAA;;ECoBJ,UAAA,GAAa,uBAAA;AAAA;AAAA,UAGE,mBAAA,SAA4B,mBAAA;;;;EAI3C,KAAA,GAAQ,wBAAA;AAAA;AAAA,UAGO,sBAAA,SAA+B,sBAAA;EAC9C,MAAA,GAAS,mBAAA;AAAA;AAAA,UAGM,0BAAA,SAAmC,0BAAA;EAClD,MAAA,EAAQ,mBAAA;AAAA;AAAA,KAGE,mBAAA,yBACc,0BAAA,GACtB,0BAAA,IACA,mBAAA,CAAoB,eAAA;AAAA"}
|