@powerlines/plugin-plugin 0.12.54 → 0.12.55

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.
@@ -99,7 +99,6 @@ declare module "powerlines" {
99
99
  };
100
100
  }, [() => src_types_plugin.__ΩPluginPluginOptions, 'options', () => ({}), '', 'Pn!2">#!/$']);
101
101
 
102
- exports.__ΩPluginPluginAlloyOptions = src_types_plugin.__ΩPluginPluginAlloyOptions;
103
102
  exports.__ΩPluginPluginContext = src_types_plugin.__ΩPluginPluginContext;
104
103
  exports.__ΩPluginPluginOptions = src_types_plugin.__ΩPluginPluginOptions;
105
104
  exports.__ΩPluginPluginResolvedConfig = src_types_plugin.__ΩPluginPluginResolvedConfig;
package/dist/src/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { __ΩPluginPluginOptions as ___PluginPluginOptions, __ΩPluginPluginContext as ___PluginPluginContext } from './types/plugin.js';
2
- export { __ΩPluginPluginAlloyOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig } from './types/plugin.js';
2
+ export { __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig } from './types/plugin.js';
3
3
  import { LogLevelLabel } from '@storm-software/config-tools/types';
4
4
  import { parseTypeDefinition } from '@stryke/convert/parse-type-definition';
5
5
  import { toArray } from '@stryke/convert/to-array';
@@ -4,7 +4,6 @@ var src_types_plugin = require('./plugin.cjs');
4
4
 
5
5
 
6
6
 
7
- exports.__ΩPluginPluginAlloyOptions = src_types_plugin.__ΩPluginPluginAlloyOptions;
8
7
  exports.__ΩPluginPluginContext = src_types_plugin.__ΩPluginPluginContext;
9
8
  exports.__ΩPluginPluginOptions = src_types_plugin.__ΩPluginPluginOptions;
10
9
  exports.__ΩPluginPluginResolvedConfig = src_types_plugin.__ΩPluginPluginResolvedConfig;
@@ -1 +1 @@
1
- export { __ΩPluginPluginAlloyOptions, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig } from './plugin.js';
1
+ export { __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig } from './plugin.js';
@@ -1,14 +1,28 @@
1
1
  'use strict';
2
2
 
3
- const __ΩPartial = ['T', 'Partial', 'l+e#!e"!fRb!Pde"!gN#"w"y'];
4
- const __ΩPluginPluginAlloyOptions = [() => __ΩPartial, 'PrintTreeOptions', 'generatesJson', true, 'generatesMarkdown', 'PluginPluginAlloyOptions', 'P"w"o!"P)4#8>$)4%8>$MKw&y'];
3
+ /* -------------------------------------------------------------------
4
+
5
+ ⚡ Storm Software - Powerlines
6
+
7
+ This code was released as part of the Powerlines project. Powerlines
8
+ is maintained by Storm Software under the Apache-2.0 license, and is
9
+ free for commercial and private use. For more information, please visit
10
+ our licensing page at https://stormsoftware.com/licenses/projects/powerlines.
11
+
12
+ Website: https://stormsoftware.com
13
+ Repository: https://github.com/storm-software/powerlines
14
+ Documentation: https://docs.stormsoftware.com/projects/powerlines
15
+ Contact: https://stormsoftware.com/contact
16
+
17
+ SPDX-License-Identifier: Apache-2.0
18
+
19
+ ------------------------------------------------------------------- */
5
20
  const __ΩPluginPluginTypesOptions = ['options', 'userConfig', 'PluginPluginTypesOptions', 'P!4!8!4"8Mw#y'];
6
21
  const __ΩPluginPluginOptions = [() => __ΩPluginPluginTypesOptions, 'types', 'PluginPluginOptions', 'Pn!4"8Mw#y'];
7
22
  const __ΩPluginPluginUserConfig = [() => __ΩPluginPluginOptions, 'plugin', 'PluginPluginUserConfig', 'P!Pn!4"MKw#y'];
8
23
  const __ΩPluginPluginResolvedConfig = [() => __ΩPluginPluginOptions, 'plugin', 'PluginPluginResolvedConfig', 'P!Pn!4"MKw#y'];
9
24
  const __ΩPluginPluginContext = [() => __ΩPluginPluginResolvedConfig, 'TResolvedConfig', 'PluginPluginContext', 'n!c"!w#y'];
10
25
 
11
- exports.__ΩPluginPluginAlloyOptions = __ΩPluginPluginAlloyOptions;
12
26
  exports.__ΩPluginPluginContext = __ΩPluginPluginContext;
13
27
  exports.__ΩPluginPluginOptions = __ΩPluginPluginOptions;
14
28
  exports.__ΩPluginPluginResolvedConfig = __ΩPluginPluginResolvedConfig;
@@ -1,23 +1,8 @@
1
- import type { PrintTreeOptions } from "@alloy-js/core";
2
1
  import { TypeDefinitionParameter } from "@stryke/types/configuration";
3
2
  import type { TsdownBuildConfig, TsdownResolvedBuildConfig } from "powerlines/types/build";
4
3
  import type { UserConfig } from "powerlines/types/config";
5
4
  import type { PluginContext } from "powerlines/types/context";
6
5
  import type { ResolvedConfig } from "powerlines/types/resolved";
7
- export type PluginPluginAlloyOptions = Partial<PrintTreeOptions> & {
8
- /**
9
- * If true, the Alloy framework is used to generate JSON output files.
10
- *
11
- * @defaultValue false
12
- */
13
- generatesJson?: boolean;
14
- /**
15
- * If true, the Alloy framework is used to generate Markdown output files.
16
- *
17
- * @defaultValue false
18
- */
19
- generatesMarkdown?: boolean;
20
- };
21
6
  export interface PluginPluginTypesOptions {
22
7
  /**
23
8
  * The type definition for the plugin's options.
@@ -41,7 +26,6 @@ export type PluginPluginResolvedConfig = ResolvedConfig<PluginPluginUserConfig>
41
26
  plugin: PluginPluginOptions;
42
27
  };
43
28
  export type PluginPluginContext<TResolvedConfig extends PluginPluginResolvedConfig = PluginPluginResolvedConfig> = PluginContext<TResolvedConfig>;
44
- export declare type __ΩPluginPluginAlloyOptions = any[];
45
29
  export declare type __ΩPluginPluginTypesOptions = any[];
46
30
  export declare type __ΩPluginPluginOptions = any[];
47
31
  export declare type __ΩPluginPluginUserConfig = any[];
@@ -1,9 +1,24 @@
1
- const __ΩPartial = ['T', 'Partial', 'l+e#!e"!fRb!Pde"!gN#"w"y'];
2
- const __ΩPluginPluginAlloyOptions = [() => __ΩPartial, 'PrintTreeOptions', 'generatesJson', true, 'generatesMarkdown', 'PluginPluginAlloyOptions', 'P"w"o!"P)4#8>$)4%8>$MKw&y'];
1
+ /* -------------------------------------------------------------------
2
+
3
+ ⚡ Storm Software - Powerlines
4
+
5
+ This code was released as part of the Powerlines project. Powerlines
6
+ is maintained by Storm Software under the Apache-2.0 license, and is
7
+ free for commercial and private use. For more information, please visit
8
+ our licensing page at https://stormsoftware.com/licenses/projects/powerlines.
9
+
10
+ Website: https://stormsoftware.com
11
+ Repository: https://github.com/storm-software/powerlines
12
+ Documentation: https://docs.stormsoftware.com/projects/powerlines
13
+ Contact: https://stormsoftware.com/contact
14
+
15
+ SPDX-License-Identifier: Apache-2.0
16
+
17
+ ------------------------------------------------------------------- */
3
18
  const __ΩPluginPluginTypesOptions = ['options', 'userConfig', 'PluginPluginTypesOptions', 'P!4!8!4"8Mw#y'];
4
19
  const __ΩPluginPluginOptions = [() => __ΩPluginPluginTypesOptions, 'types', 'PluginPluginOptions', 'Pn!4"8Mw#y'];
5
20
  const __ΩPluginPluginUserConfig = [() => __ΩPluginPluginOptions, 'plugin', 'PluginPluginUserConfig', 'P!Pn!4"MKw#y'];
6
21
  const __ΩPluginPluginResolvedConfig = [() => __ΩPluginPluginOptions, 'plugin', 'PluginPluginResolvedConfig', 'P!Pn!4"MKw#y'];
7
22
  const __ΩPluginPluginContext = [() => __ΩPluginPluginResolvedConfig, 'TResolvedConfig', 'PluginPluginContext', 'n!c"!w#y'];
8
23
 
9
- export { __ΩPluginPluginAlloyOptions, __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig };
24
+ export { __ΩPluginPluginContext, __ΩPluginPluginOptions, __ΩPluginPluginResolvedConfig, __ΩPluginPluginTypesOptions, __ΩPluginPluginUserConfig };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-plugin",
3
- "version": "0.12.54",
3
+ "version": "0.12.55",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
6
6
  "repository": {
@@ -133,10 +133,10 @@
133
133
  "@stryke/convert": "^0.6.29",
134
134
  "defu": "^6.1.4",
135
135
  "jiti": "^2.6.1",
136
- "powerlines": "^0.36.7"
136
+ "powerlines": "^0.36.8"
137
137
  },
138
138
  "devDependencies": {
139
- "@powerlines/nx": "^0.11.33",
139
+ "@powerlines/nx": "^0.11.34",
140
140
  "@rollup/plugin-commonjs": "^28.0.9",
141
141
  "@rollup/plugin-node-resolve": "^16.0.3",
142
142
  "@types/babel__helper-plugin-utils": "^7.10.3",
@@ -145,5 +145,5 @@
145
145
  "rollup-plugin-typescript2": "^0.36.0"
146
146
  },
147
147
  "publishConfig": { "access": "public" },
148
- "gitHead": "abbf694ae460ab6f58ae645a000cabf4a4fdac80"
148
+ "gitHead": "8867c7bf5d0505b507b029ae191bfc2844478c0e"
149
149
  }