@shell-shock/preset-cli 0.9.10 → 0.9.11

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 CHANGED
@@ -78,7 +78,6 @@ const plugin = (options = {}) => {
78
78
  (0, _alloy_js_core_jsx_runtime.createComponent)(require_components_banner_builtin.BannerBuiltin, { get command() {
79
79
  return bin.value;
80
80
  } }),
81
- (0, _alloy_js_core_jsx_runtime.createComponent)(_powerlines_plugin_alloy_core_components.Spacing, {}),
82
81
  (0, _alloy_js_core_jsx_runtime.createComponent)(_alloy_js_core.For, {
83
82
  get each() {
84
83
  return commands.sort((a, b) => a.name.localeCompare(b.name));
package/dist/index.mjs CHANGED
@@ -71,7 +71,6 @@ const plugin = (options = {}) => {
71
71
  createComponent(BannerBuiltin, { get command() {
72
72
  return bin.value;
73
73
  } }),
74
- createComponent(Spacing, {}),
75
74
  createComponent(For, {
76
75
  get each() {
77
76
  return commands.sort((a, b) => a.name.localeCompare(b.name));
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\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/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { code, computed, For, Show } from \"@alloy-js/core\";\nimport { VarDeclaration } from \"@alloy-js/typescript\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components\";\nimport { render } from \"@powerlines/plugin-alloy/render\";\nimport {\n getAppDescription,\n getAppName,\n getCommandList\n} from \"@shell-shock/core/plugin-utils\";\nimport changelog from \"@shell-shock/plugin-changelog\";\nimport completions from \"@shell-shock/plugin-completions\";\nimport console from \"@shell-shock/plugin-console\";\nimport help from \"@shell-shock/plugin-help\";\nimport prompts from \"@shell-shock/plugin-prompts\";\nimport upgrade from \"@shell-shock/plugin-upgrade\";\nimport { BinEntry } from \"@shell-shock/preset-script/components/bin-entry\";\nimport { joinPaths } from \"@stryke/path\";\nimport type { Plugin } from \"powerlines\";\nimport { BannerBuiltin } from \"./components/banner-builtin\";\nimport { CommandEntry } from \"./components/command-entry\";\nimport { CommandRouter } from \"./components/command-router\";\nimport { UpgradeBuiltin } from \"./components/upgrade-builtin\";\nimport { VirtualCommandEntry } from \"./components/virtual-command-entry\";\nimport { getGlobalOptions } from \"./helpers/get-global-options\";\nimport type { CLIPresetContext, CLIPresetOptions } from \"./types/plugin\";\n\n/**\n * The Shell Shock CLI Preset plugin.\n *\n * @remarks\n * This preset includes a set of built-in modules and commands to create a CLI application, as well as configuration options to customize the generated code. It also includes the `prompts` plugin to provide interactive prompts in the CLI application, and the `upgrade` plugin to manage upgrading the local application's version.\n */\nexport const plugin = <TContext extends CLIPresetContext = CLIPresetContext>(\n options: CLIPresetOptions = {}\n): Plugin<TContext>[] => {\n return [\n ...console<TContext>(options),\n ...help<TContext>(options),\n ...prompts<TContext>(options),\n ...(options.changelog !== false\n ? [changelog<TContext>(options.changelog)]\n : []),\n ...(options.completions !== false\n ? completions<TContext>(options.completions)\n : []),\n upgrade<TContext>(options),\n {\n name: \"shell-shock:cli-preset\",\n config() {\n this.debug(\n \"Providing default configuration for the Shell Shock `cli` preset.\"\n );\n\n return {\n globalOptions: getGlobalOptions,\n isCaseSensitive: false,\n ...options\n };\n },\n prepare: {\n order: \"post\",\n async handler() {\n this.debug(\"Rendering built-in modules.\");\n\n const commands = await getCommandList(this);\n this.debug(\n `Rendering \\`banner\\` built-ins for each of the ${\n commands.length\n } command modules.`\n );\n\n const bin = computed(() => ({\n id: \"\",\n name: getAppName(this),\n title: \"\",\n description: getAppDescription(this),\n isVirtual: true,\n path: null,\n segments: [],\n alias: [],\n tags: [],\n options: Object.fromEntries(\n this.options.map(option => [option.name, option])\n ),\n entry: {\n file: joinPaths(this.entryPath, \"bin.ts\")\n },\n args: [],\n parent: null,\n children: this.commands\n }));\n\n return render(\n this,\n <>\n <UpgradeBuiltin />\n <BannerBuiltin command={bin.value} />\n <Spacing />\n <For\n each={commands.sort((a, b) => a.name.localeCompare(b.name))}\n doubleHardline>\n {command => <BannerBuiltin command={command} />}\n </For>\n </>\n );\n }\n }\n },\n {\n name: \"shell-shock:cli-preset:generate-entrypoint\",\n prepare: {\n order: \"post\",\n async handler() {\n this.debug(\n \"Rendering entrypoint modules for the Shell Shock `cli` preset.\"\n );\n\n return render(\n this,\n <>\n <BinEntry\n builtinImports={{\n console: [\n \"info\",\n \"debug\",\n \"warn\",\n \"help\",\n \"error\",\n \"cursor\",\n \"divider\",\n \"stripAnsi\",\n \"writeLine\",\n \"splitText\"\n ],\n utils: [\"isMinimal\", \"isInteractive\"],\n state: [\"useGlobal\", \"useArgs\", \"isHelp\"],\n prompts: [\n \"text\",\n \"numeric\",\n \"toggle\",\n \"select\",\n \"confirm\",\n \"isCancel\"\n ],\n env: [\"env\", \"paths\"],\n upgrade: [\"executeUpgrade\"]\n }}>\n <Show when={Object.keys(this.commands).length > 0}>\n <VarDeclaration\n let\n name=\"args\"\n type=\"string[]\"\n initializer={code`useArgs();`}\n />\n <hbr />\n <CommandRouter segments={[]} commands={this.commands ?? {}} />\n <hbr />\n </Show>\n <hbr />\n {code`await showBanner(0);`}\n <Spacing />\n {code`return showHelp(); `}\n </BinEntry>\n <Show when={Object.values(this.commands).length > 0}>\n <For each={Object.values(this.commands)} doubleHardline>\n {child => (\n <Show\n when={child.isVirtual}\n fallback={<CommandEntry command={child} />}>\n <VirtualCommandEntry command={child} />\n </Show>\n )}\n </For>\n </Show>\n </>\n );\n }\n }\n }\n ];\n};\n\nexport default plugin;\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\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/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { code, computed, For, Show } from \"@alloy-js/core\";\nimport { VarDeclaration } from \"@alloy-js/typescript\";\nimport { Spacing } from \"@powerlines/plugin-alloy/core/components\";\nimport { render } from \"@powerlines/plugin-alloy/render\";\nimport {\n getAppDescription,\n getAppName,\n getCommandList\n} from \"@shell-shock/core/plugin-utils\";\nimport changelog from \"@shell-shock/plugin-changelog\";\nimport completions from \"@shell-shock/plugin-completions\";\nimport console from \"@shell-shock/plugin-console\";\nimport help from \"@shell-shock/plugin-help\";\nimport prompts from \"@shell-shock/plugin-prompts\";\nimport upgrade from \"@shell-shock/plugin-upgrade\";\nimport { BinEntry } from \"@shell-shock/preset-script/components/bin-entry\";\nimport { joinPaths } from \"@stryke/path\";\nimport type { Plugin } from \"powerlines\";\nimport { BannerBuiltin } from \"./components/banner-builtin\";\nimport { CommandEntry } from \"./components/command-entry\";\nimport { CommandRouter } from \"./components/command-router\";\nimport { UpgradeBuiltin } from \"./components/upgrade-builtin\";\nimport { VirtualCommandEntry } from \"./components/virtual-command-entry\";\nimport { getGlobalOptions } from \"./helpers/get-global-options\";\nimport type { CLIPresetContext, CLIPresetOptions } from \"./types/plugin\";\n\n/**\n * The Shell Shock CLI Preset plugin.\n *\n * @remarks\n * This preset includes a set of built-in modules and commands to create a CLI application, as well as configuration options to customize the generated code. It also includes the `prompts` plugin to provide interactive prompts in the CLI application, and the `upgrade` plugin to manage upgrading the local application's version.\n */\nexport const plugin = <TContext extends CLIPresetContext = CLIPresetContext>(\n options: CLIPresetOptions = {}\n): Plugin<TContext>[] => {\n return [\n ...console<TContext>(options),\n ...help<TContext>(options),\n ...prompts<TContext>(options),\n ...(options.changelog !== false\n ? [changelog<TContext>(options.changelog)]\n : []),\n ...(options.completions !== false\n ? completions<TContext>(options.completions)\n : []),\n upgrade<TContext>(options),\n {\n name: \"shell-shock:cli-preset\",\n config() {\n this.debug(\n \"Providing default configuration for the Shell Shock `cli` preset.\"\n );\n\n return {\n globalOptions: getGlobalOptions,\n isCaseSensitive: false,\n ...options\n };\n },\n prepare: {\n order: \"post\",\n async handler() {\n this.debug(\"Rendering built-in modules.\");\n\n const commands = await getCommandList(this);\n this.debug(\n `Rendering \\`banner\\` built-ins for each of the ${\n commands.length\n } command modules.`\n );\n\n const bin = computed(() => ({\n id: \"\",\n name: getAppName(this),\n title: \"\",\n description: getAppDescription(this),\n isVirtual: true,\n path: null,\n segments: [],\n alias: [],\n tags: [],\n options: Object.fromEntries(\n this.options.map(option => [option.name, option])\n ),\n entry: {\n file: joinPaths(this.entryPath, \"bin.ts\")\n },\n args: [],\n parent: null,\n children: this.commands\n }));\n\n return render(\n this,\n <>\n <UpgradeBuiltin />\n <BannerBuiltin command={bin.value} />\n <For\n each={commands.sort((a, b) => a.name.localeCompare(b.name))}\n doubleHardline>\n {command => <BannerBuiltin command={command} />}\n </For>\n </>\n );\n }\n }\n },\n {\n name: \"shell-shock:cli-preset:generate-entrypoint\",\n prepare: {\n order: \"post\",\n async handler() {\n this.debug(\n \"Rendering entrypoint modules for the Shell Shock `cli` preset.\"\n );\n\n return render(\n this,\n <>\n <BinEntry\n builtinImports={{\n console: [\n \"info\",\n \"debug\",\n \"warn\",\n \"help\",\n \"error\",\n \"cursor\",\n \"divider\",\n \"stripAnsi\",\n \"writeLine\",\n \"splitText\"\n ],\n utils: [\"isMinimal\", \"isInteractive\"],\n state: [\"useGlobal\", \"useArgs\", \"isHelp\"],\n prompts: [\n \"text\",\n \"numeric\",\n \"toggle\",\n \"select\",\n \"confirm\",\n \"isCancel\"\n ],\n env: [\"env\", \"paths\"],\n upgrade: [\"executeUpgrade\"]\n }}>\n <Show when={Object.keys(this.commands).length > 0}>\n <VarDeclaration\n let\n name=\"args\"\n type=\"string[]\"\n initializer={code`useArgs();`}\n />\n <hbr />\n <CommandRouter segments={[]} commands={this.commands ?? {}} />\n <hbr />\n </Show>\n <hbr />\n {code`await showBanner(0);`}\n <Spacing />\n {code`return showHelp(); `}\n </BinEntry>\n <Show when={Object.values(this.commands).length > 0}>\n <For each={Object.values(this.commands)} doubleHardline>\n {child => (\n <Show\n when={child.isVirtual}\n fallback={<CommandEntry command={child} />}>\n <VirtualCommandEntry command={child} />\n </Show>\n )}\n </For>\n </Show>\n </>\n );\n }\n }\n }\n ];\n};\n\nexport default plugin;\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shell-shock/preset-cli",
3
- "version": "0.9.10",
3
+ "version": "0.9.11",
4
4
  "private": false,
5
5
  "description": "A package containing a Shell Shock plugin to generate source code given a list design tokens.",
6
6
  "keywords": [
@@ -184,15 +184,15 @@
184
184
  "@powerlines/deepkit": "^0.6.167",
185
185
  "@powerlines/plugin-alloy": "^0.26.9",
186
186
  "@powerlines/plugin-plugin": "^0.12.343",
187
- "@shell-shock/core": "^0.16.1",
188
- "@shell-shock/plugin-banner": "^0.1.25",
189
- "@shell-shock/plugin-completions": "^0.4.6",
190
- "@shell-shock/plugin-console": "^0.2.2",
191
- "@shell-shock/plugin-help": "^0.2.16",
192
- "@shell-shock/plugin-prompts": "^0.3.39",
193
- "@shell-shock/plugin-theme": "^0.4.11",
194
- "@shell-shock/plugin-upgrade": "^0.1.43",
195
- "@shell-shock/preset-script": "^0.6.53",
187
+ "@shell-shock/core": "^0.16.2",
188
+ "@shell-shock/plugin-banner": "^0.1.26",
189
+ "@shell-shock/plugin-completions": "^0.4.7",
190
+ "@shell-shock/plugin-console": "^0.2.3",
191
+ "@shell-shock/plugin-help": "^0.2.17",
192
+ "@shell-shock/plugin-prompts": "^0.3.40",
193
+ "@shell-shock/plugin-theme": "^0.4.12",
194
+ "@shell-shock/plugin-upgrade": "^0.1.44",
195
+ "@shell-shock/preset-script": "^0.6.54",
196
196
  "@stryke/path": "^0.27.4",
197
197
  "@stryke/string-format": "^0.17.9",
198
198
  "@stryke/type-checks": "^0.6.1",
@@ -229,5 +229,5 @@
229
229
  }
230
230
  },
231
231
  "inlinedDependencies": { "@stryke/types": "0.11.3" },
232
- "gitHead": "5620dfed15a7d3ff47ad3f1665f6fdd8c6fd5d08"
232
+ "gitHead": "c1b938503f5de35ab59e58638029def62257a504"
233
233
  }