@shell-shock/preset-script 0.4.1 → 0.5.0

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.
Files changed (74) hide show
  1. package/dist/components/banner-function-declaration.cjs +1 -1
  2. package/dist/components/banner-function-declaration.cjs.map +1 -1
  3. package/dist/components/banner-function-declaration.mjs +1 -1
  4. package/dist/components/banner-function-declaration.mjs.map +1 -1
  5. package/dist/components/bin-entry.cjs +6 -3
  6. package/dist/components/bin-entry.cjs.map +1 -1
  7. package/dist/components/bin-entry.d.cts.map +1 -1
  8. package/dist/components/bin-entry.d.mts.map +1 -1
  9. package/dist/components/bin-entry.mjs +6 -3
  10. package/dist/components/bin-entry.mjs.map +1 -1
  11. package/dist/components/command-entry.cjs +112 -74
  12. package/dist/components/command-entry.cjs.map +1 -1
  13. package/dist/components/command-entry.d.cts.map +1 -1
  14. package/dist/components/command-entry.d.mts.map +1 -1
  15. package/dist/components/command-entry.mjs +114 -76
  16. package/dist/components/command-entry.mjs.map +1 -1
  17. package/dist/components/command-router.cjs +5 -5
  18. package/dist/components/command-router.cjs.map +1 -1
  19. package/dist/components/command-router.d.cts +1 -1
  20. package/dist/components/command-router.d.cts.map +1 -1
  21. package/dist/components/command-router.d.mts +1 -1
  22. package/dist/components/command-router.d.mts.map +1 -1
  23. package/dist/components/command-router.mjs +5 -5
  24. package/dist/components/command-router.mjs.map +1 -1
  25. package/dist/components/console-builtin.cjs +22 -16
  26. package/dist/components/console-builtin.cjs.map +1 -1
  27. package/dist/components/console-builtin.d.cts +1 -0
  28. package/dist/components/console-builtin.d.cts.map +1 -1
  29. package/dist/components/console-builtin.d.mts +1 -0
  30. package/dist/components/console-builtin.d.mts.map +1 -1
  31. package/dist/components/console-builtin.mjs +22 -16
  32. package/dist/components/console-builtin.mjs.map +1 -1
  33. package/dist/components/help.cjs +27 -20
  34. package/dist/components/help.cjs.map +1 -1
  35. package/dist/components/help.d.cts +9 -9
  36. package/dist/components/help.d.cts.map +1 -1
  37. package/dist/components/help.d.mts +9 -9
  38. package/dist/components/help.d.mts.map +1 -1
  39. package/dist/components/help.mjs +28 -21
  40. package/dist/components/help.mjs.map +1 -1
  41. package/dist/components/helpers.cjs +54 -0
  42. package/dist/components/helpers.cjs.map +1 -0
  43. package/dist/components/helpers.d.cts +29 -0
  44. package/dist/components/helpers.d.cts.map +1 -0
  45. package/dist/components/helpers.d.mts +29 -0
  46. package/dist/components/helpers.d.mts.map +1 -0
  47. package/dist/components/helpers.mjs +50 -0
  48. package/dist/components/helpers.mjs.map +1 -0
  49. package/dist/components/index.cjs +1 -0
  50. package/dist/components/index.d.cts +2 -2
  51. package/dist/components/index.d.mts +2 -2
  52. package/dist/components/index.mjs +2 -2
  53. package/dist/components/utils-builtin.cjs +160 -6
  54. package/dist/components/utils-builtin.cjs.map +1 -1
  55. package/dist/components/utils-builtin.d.cts +9 -8
  56. package/dist/components/utils-builtin.d.cts.map +1 -1
  57. package/dist/components/utils-builtin.d.mts +9 -8
  58. package/dist/components/utils-builtin.d.mts.map +1 -1
  59. package/dist/components/utils-builtin.mjs +161 -8
  60. package/dist/components/utils-builtin.mjs.map +1 -1
  61. package/dist/components/virtual-command-entry.cjs +12 -8
  62. package/dist/components/virtual-command-entry.cjs.map +1 -1
  63. package/dist/components/virtual-command-entry.mjs +12 -8
  64. package/dist/components/virtual-command-entry.mjs.map +1 -1
  65. package/dist/helpers/ansi-utils.cjs +4 -4
  66. package/dist/helpers/ansi-utils.cjs.map +1 -1
  67. package/dist/helpers/ansi-utils.mjs +4 -4
  68. package/dist/helpers/ansi-utils.mjs.map +1 -1
  69. package/dist/index.cjs +1 -1
  70. package/dist/index.cjs.map +1 -1
  71. package/dist/index.mjs +1 -1
  72. package/dist/index.mjs.map +1 -1
  73. package/dist/types/plugin.d.cts.map +1 -1
  74. package/package.json +24 -10
@@ -0,0 +1,54 @@
1
+ const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
2
+ let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
3
+ let __alloy_js_core = require("@alloy-js/core");
4
+
5
+ //#region src/components/helpers.tsx
6
+ /**
7
+ * Write the logic to determine if the application is running in debug mode.
8
+ *
9
+ * @remarks
10
+ * This is used to conditionally include debug-only logic in the generated application, such as additional logging or development tools. The logic should check for common indicators of debug mode, such as environment variables or the presence of a debugger.
11
+ */
12
+ function IsDebug() {
13
+ return __alloy_js_core.code`isDevelopment || isDebug || env.LOG_LEVEL === "debug"`;
14
+ }
15
+ /**
16
+ * Write the logic to determine if the application is **not** running in debug mode.
17
+ */
18
+ function IsNotDebug() {
19
+ return [
20
+ __alloy_js_core.code`!(`,
21
+ (0, __alloy_js_core_jsx_runtime.createComponent)(IsDebug, {}),
22
+ __alloy_js_core.code`)`
23
+ ];
24
+ }
25
+ /**
26
+ * Write the logic to determine if the application is running in verbose mode.
27
+ *
28
+ * @remarks
29
+ * This is used to conditionally include verbose-only logic in the generated application, such as additional logging or detailed output. The logic should check for common indicators of verbose mode, such as environment variables or command-line flags.
30
+ */
31
+ function IsVerbose() {
32
+ return [
33
+ __alloy_js_core.code`( `,
34
+ (0, __alloy_js_core_jsx_runtime.createComponent)(IsDebug, {}),
35
+ __alloy_js_core.code`|| hasFlag(["verbose", "verbose=true", "verbose=always"]))`
36
+ ];
37
+ }
38
+ /**
39
+ * Write the logic to determine if the application is **not** running in verbose mode.
40
+ */
41
+ function IsNotVerbose() {
42
+ return [
43
+ __alloy_js_core.code`!(`,
44
+ (0, __alloy_js_core_jsx_runtime.createComponent)(IsVerbose, {}),
45
+ __alloy_js_core.code`)`
46
+ ];
47
+ }
48
+
49
+ //#endregion
50
+ exports.IsDebug = IsDebug;
51
+ exports.IsNotDebug = IsNotDebug;
52
+ exports.IsNotVerbose = IsNotVerbose;
53
+ exports.IsVerbose = IsVerbose;
54
+ //# sourceMappingURL=helpers.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.cjs","names":["code","IsDebug","IsNotDebug","_$createComponent","IsVerbose","IsNotVerbose"],"sources":["../../src/components/helpers.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 } from \"@alloy-js/core\";\n\n/**\n * Write the logic to determine if the application is running in debug mode.\n *\n * @remarks\n * This is used to conditionally include debug-only logic in the generated application, such as additional logging or development tools. The logic should check for common indicators of debug mode, such as environment variables or the presence of a debugger.\n */\nexport function IsDebug() {\n return code`isDevelopment || isDebug || env.LOG_LEVEL === \"debug\"`;\n}\n\n/**\n * Write the logic to determine if the application is **not** running in debug mode.\n */\nexport function IsNotDebug() {\n return (\n <>\n {code`!(`}\n <IsDebug />\n {code`)`}\n </>\n );\n}\n\n/**\n * Write the logic to determine if the application is running in verbose mode.\n *\n * @remarks\n * This is used to conditionally include verbose-only logic in the generated application, such as additional logging or detailed output. The logic should check for common indicators of verbose mode, such as environment variables or command-line flags.\n */\nexport function IsVerbose() {\n return (\n <>\n {code`( `}\n <IsDebug />\n {code`|| hasFlag([\"verbose\", \"verbose=true\", \"verbose=always\"]))`}\n </>\n );\n}\n\n/**\n * Write the logic to determine if the application is **not** running in verbose mode.\n */\nexport function IsNotVerbose() {\n return (\n <>\n {code`!(`}\n <IsVerbose />\n {code`)`}\n </>\n );\n}\n"],"mappings":";;;;;;;;;;;AA0BA,SAAgBC,UAAU;AACxB,QAAOD,oBAAI;;;;;AAMb,SAAgBE,aAAa;AAC3B,QAAA;EAEKF,oBAAI;mDACJC,SAAO,EAAA,CAAA;EACPD,oBAAI;EAAG;;;;;;;;AAWd,SAAgBI,YAAY;AAC1B,QAAA;EAEKJ,oBAAI;mDACJC,SAAO,EAAA,CAAA;EACPD,oBAAI;EAA4D;;;;;AAQvE,SAAgBK,eAAe;AAC7B,QAAA;EAEKL,oBAAI;mDACJI,WAAS,EAAA,CAAA;EACTJ,oBAAI;EAAG"}
@@ -0,0 +1,29 @@
1
+ import * as _alloy_js_core0 from "@alloy-js/core";
2
+
3
+ //#region src/components/helpers.d.ts
4
+
5
+ /**
6
+ * Write the logic to determine if the application is running in debug mode.
7
+ *
8
+ * @remarks
9
+ * This is used to conditionally include debug-only logic in the generated application, such as additional logging or development tools. The logic should check for common indicators of debug mode, such as environment variables or the presence of a debugger.
10
+ */
11
+ declare function IsDebug(): _alloy_js_core0.Children;
12
+ /**
13
+ * Write the logic to determine if the application is **not** running in debug mode.
14
+ */
15
+ declare function IsNotDebug(): _alloy_js_core0.Children;
16
+ /**
17
+ * Write the logic to determine if the application is running in verbose mode.
18
+ *
19
+ * @remarks
20
+ * This is used to conditionally include verbose-only logic in the generated application, such as additional logging or detailed output. The logic should check for common indicators of verbose mode, such as environment variables or command-line flags.
21
+ */
22
+ declare function IsVerbose(): _alloy_js_core0.Children;
23
+ /**
24
+ * Write the logic to determine if the application is **not** running in verbose mode.
25
+ */
26
+ declare function IsNotVerbose(): _alloy_js_core0.Children;
27
+ //#endregion
28
+ export { IsDebug, IsNotDebug, IsNotVerbose, IsVerbose };
29
+ //# sourceMappingURL=helpers.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.d.cts","names":[],"sources":["../../src/components/helpers.tsx"],"sourcesContent":[],"mappings":";;;;;;;AA0BA;AAOA;AAgBA;AAagB,iBApCA,OAAA,CAAA,CAoCY,EApCL,eAAA,CAAA,QAoCK;;;;iBA7BZ,UAAA,CAAA,GAAU,eAAA,CAAA;;;;;;;iBAgBV,SAAA,CAAA,GAAS,eAAA,CAAA;;;;iBAaT,YAAA,CAAA,GAAY,eAAA,CAAA"}
@@ -0,0 +1,29 @@
1
+ import * as _alloy_js_core0 from "@alloy-js/core";
2
+
3
+ //#region src/components/helpers.d.ts
4
+
5
+ /**
6
+ * Write the logic to determine if the application is running in debug mode.
7
+ *
8
+ * @remarks
9
+ * This is used to conditionally include debug-only logic in the generated application, such as additional logging or development tools. The logic should check for common indicators of debug mode, such as environment variables or the presence of a debugger.
10
+ */
11
+ declare function IsDebug(): _alloy_js_core0.Children;
12
+ /**
13
+ * Write the logic to determine if the application is **not** running in debug mode.
14
+ */
15
+ declare function IsNotDebug(): _alloy_js_core0.Children;
16
+ /**
17
+ * Write the logic to determine if the application is running in verbose mode.
18
+ *
19
+ * @remarks
20
+ * This is used to conditionally include verbose-only logic in the generated application, such as additional logging or detailed output. The logic should check for common indicators of verbose mode, such as environment variables or command-line flags.
21
+ */
22
+ declare function IsVerbose(): _alloy_js_core0.Children;
23
+ /**
24
+ * Write the logic to determine if the application is **not** running in verbose mode.
25
+ */
26
+ declare function IsNotVerbose(): _alloy_js_core0.Children;
27
+ //#endregion
28
+ export { IsDebug, IsNotDebug, IsNotVerbose, IsVerbose };
29
+ //# sourceMappingURL=helpers.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.d.mts","names":[],"sources":["../../src/components/helpers.tsx"],"sourcesContent":[],"mappings":";;;;;;;AA0BA;AAOA;AAgBA;AAagB,iBApCA,OAAA,CAAA,CAoCY,EApCL,eAAA,CAAA,QAoCK;;;;iBA7BZ,UAAA,CAAA,GAAU,eAAA,CAAA;;;;;;;iBAgBV,SAAA,CAAA,GAAS,eAAA,CAAA;;;;iBAaT,YAAA,CAAA,GAAY,eAAA,CAAA"}
@@ -0,0 +1,50 @@
1
+ import { createComponent } from "@alloy-js/core/jsx-runtime";
2
+ import { code } from "@alloy-js/core";
3
+
4
+ //#region src/components/helpers.tsx
5
+ /**
6
+ * Write the logic to determine if the application is running in debug mode.
7
+ *
8
+ * @remarks
9
+ * This is used to conditionally include debug-only logic in the generated application, such as additional logging or development tools. The logic should check for common indicators of debug mode, such as environment variables or the presence of a debugger.
10
+ */
11
+ function IsDebug() {
12
+ return code`isDevelopment || isDebug || env.LOG_LEVEL === "debug"`;
13
+ }
14
+ /**
15
+ * Write the logic to determine if the application is **not** running in debug mode.
16
+ */
17
+ function IsNotDebug() {
18
+ return [
19
+ code`!(`,
20
+ createComponent(IsDebug, {}),
21
+ code`)`
22
+ ];
23
+ }
24
+ /**
25
+ * Write the logic to determine if the application is running in verbose mode.
26
+ *
27
+ * @remarks
28
+ * This is used to conditionally include verbose-only logic in the generated application, such as additional logging or detailed output. The logic should check for common indicators of verbose mode, such as environment variables or command-line flags.
29
+ */
30
+ function IsVerbose() {
31
+ return [
32
+ code`( `,
33
+ createComponent(IsDebug, {}),
34
+ code`|| hasFlag(["verbose", "verbose=true", "verbose=always"]))`
35
+ ];
36
+ }
37
+ /**
38
+ * Write the logic to determine if the application is **not** running in verbose mode.
39
+ */
40
+ function IsNotVerbose() {
41
+ return [
42
+ code`!(`,
43
+ createComponent(IsVerbose, {}),
44
+ code`)`
45
+ ];
46
+ }
47
+
48
+ //#endregion
49
+ export { IsDebug, IsNotDebug, IsNotVerbose, IsVerbose };
50
+ //# sourceMappingURL=helpers.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"helpers.mjs","names":["code","IsDebug","IsNotDebug","_$createComponent","IsVerbose","IsNotVerbose"],"sources":["../../src/components/helpers.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 } from \"@alloy-js/core\";\n\n/**\n * Write the logic to determine if the application is running in debug mode.\n *\n * @remarks\n * This is used to conditionally include debug-only logic in the generated application, such as additional logging or development tools. The logic should check for common indicators of debug mode, such as environment variables or the presence of a debugger.\n */\nexport function IsDebug() {\n return code`isDevelopment || isDebug || env.LOG_LEVEL === \"debug\"`;\n}\n\n/**\n * Write the logic to determine if the application is **not** running in debug mode.\n */\nexport function IsNotDebug() {\n return (\n <>\n {code`!(`}\n <IsDebug />\n {code`)`}\n </>\n );\n}\n\n/**\n * Write the logic to determine if the application is running in verbose mode.\n *\n * @remarks\n * This is used to conditionally include verbose-only logic in the generated application, such as additional logging or detailed output. The logic should check for common indicators of verbose mode, such as environment variables or command-line flags.\n */\nexport function IsVerbose() {\n return (\n <>\n {code`( `}\n <IsDebug />\n {code`|| hasFlag([\"verbose\", \"verbose=true\", \"verbose=always\"]))`}\n </>\n );\n}\n\n/**\n * Write the logic to determine if the application is **not** running in verbose mode.\n */\nexport function IsNotVerbose() {\n return (\n <>\n {code`!(`}\n <IsVerbose />\n {code`)`}\n </>\n );\n}\n"],"mappings":";;;;;;;;;;AA0BA,SAAgBC,UAAU;AACxB,QAAOD,IAAI;;;;;AAMb,SAAgBE,aAAa;AAC3B,QAAA;EAEKF,IAAI;EAAIG,gBACRF,SAAO,EAAA,CAAA;EACPD,IAAI;EAAG;;;;;;;;AAWd,SAAgBI,YAAY;AAC1B,QAAA;EAEKJ,IAAI;EAAIG,gBACRF,SAAO,EAAA,CAAA;EACPD,IAAI;EAA4D;;;;;AAQvE,SAAgBK,eAAe;AAC7B,QAAA;EAEKL,IAAI;EAAIG,gBACRC,WAAS,EAAA,CAAA;EACTJ,IAAI;EAAG"}
@@ -21,6 +21,7 @@ exports.CommandInvocation = require_components_command_entry.CommandInvocation;
21
21
  exports.CommandRouter = require_components_command_router.CommandRouter;
22
22
  exports.CommandRouterRoute = require_components_command_router.CommandRouterRoute;
23
23
  exports.ConsoleBuiltin = require_components_console_builtin.ConsoleBuiltin;
24
+ exports.ContextUtilities = require_components_utils_builtin.ContextUtilities;
24
25
  exports.DividerFunctionDeclaration = require_components_console_builtin.DividerFunctionDeclaration;
25
26
  exports.EnvSupportUtilities = require_components_utils_builtin.EnvSupportUtilities;
26
27
  exports.ExitFunctionDeclaration = require_components_utils_builtin.ExitFunctionDeclaration;
@@ -4,6 +4,6 @@ import { CommandEntry, CommandEntryProps, CommandHandlerDeclaration, CommandHand
4
4
  import { CommandRouter, CommandRouterProps, CommandRouterRoute } from "./command-router.cjs";
5
5
  import { ColorsDeclaration, ConsoleBuiltin, DividerFunctionDeclaration, LinkFunctionDeclaration, MessageFunctionDeclaration, MessageFunctionDeclarationProps, StripAnsiFunctionDeclaration, TableFunctionDeclaration, TableFunctionDeclarationProps, WrapAnsiFunction, WriteLineFunctionDeclaration } from "./console-builtin.cjs";
6
6
  import { BaseHelp, BaseHelpProps, CommandHelp, CommandHelpProps, HelpCommands, HelpCommandsProps, HelpOptions, HelpOptionsProps, HelpUsage, HelpUsageProps, VirtualHelp, VirtualHelpProps } from "./help.cjs";
7
- import { ArgsUtilities, ColorSupportUtilities, EnvSupportUtilities, ExitFunctionDeclaration, HyperlinkSupportUtilities, UtilsBuiltin, UtilsBuiltinProps } from "./utils-builtin.cjs";
7
+ import { ArgsUtilities, ColorSupportUtilities, ContextUtilities, EnvSupportUtilities, ExitFunctionDeclaration, HyperlinkSupportUtilities, UtilsBuiltin, UtilsBuiltinProps } from "./utils-builtin.cjs";
8
8
  import { VirtualCommandEntry, VirtualCommandEntryProps, VirtualCommandHandlerDeclaration, VirtualCommandHandlerDeclarationProps } from "./virtual-command-entry.cjs";
9
- export { ArgsUtilities, BannerFunctionBodyDeclaration, BannerFunctionBodyDeclarationProps, BannerFunctionDeclaration, BannerFunctionDeclarationProps, BaseHelp, BaseHelpProps, BinEntry, BinEntryProps, ColorSupportUtilities, ColorsDeclaration, CommandEntry, CommandEntryProps, CommandHandlerDeclaration, CommandHandlerDeclarationProps, CommandHelp, CommandHelpProps, CommandInvocation, CommandRouter, CommandRouterProps, CommandRouterRoute, ConsoleBuiltin, DividerFunctionDeclaration, EnvSupportUtilities, ExitFunctionDeclaration, HelpCommands, HelpCommandsProps, HelpOptions, HelpOptionsProps, HelpUsage, HelpUsageProps, HyperlinkSupportUtilities, LinkFunctionDeclaration, MessageFunctionDeclaration, MessageFunctionDeclarationProps, RunApplication, StripAnsiFunctionDeclaration, TableFunctionDeclaration, TableFunctionDeclarationProps, UtilsBuiltin, UtilsBuiltinProps, VirtualCommandEntry, VirtualCommandEntryProps, VirtualCommandHandlerDeclaration, VirtualCommandHandlerDeclarationProps, VirtualHelp, VirtualHelpProps, WrapAnsiFunction, WriteLineFunctionDeclaration };
9
+ export { ArgsUtilities, BannerFunctionBodyDeclaration, BannerFunctionBodyDeclarationProps, BannerFunctionDeclaration, BannerFunctionDeclarationProps, BaseHelp, BaseHelpProps, BinEntry, BinEntryProps, ColorSupportUtilities, ColorsDeclaration, CommandEntry, CommandEntryProps, CommandHandlerDeclaration, CommandHandlerDeclarationProps, CommandHelp, CommandHelpProps, CommandInvocation, CommandRouter, CommandRouterProps, CommandRouterRoute, ConsoleBuiltin, ContextUtilities, DividerFunctionDeclaration, EnvSupportUtilities, ExitFunctionDeclaration, HelpCommands, HelpCommandsProps, HelpOptions, HelpOptionsProps, HelpUsage, HelpUsageProps, HyperlinkSupportUtilities, LinkFunctionDeclaration, MessageFunctionDeclaration, MessageFunctionDeclarationProps, RunApplication, StripAnsiFunctionDeclaration, TableFunctionDeclaration, TableFunctionDeclarationProps, UtilsBuiltin, UtilsBuiltinProps, VirtualCommandEntry, VirtualCommandEntryProps, VirtualCommandHandlerDeclaration, VirtualCommandHandlerDeclarationProps, VirtualHelp, VirtualHelpProps, WrapAnsiFunction, WriteLineFunctionDeclaration };
@@ -4,6 +4,6 @@ import { CommandEntry, CommandEntryProps, CommandHandlerDeclaration, CommandHand
4
4
  import { CommandRouter, CommandRouterProps, CommandRouterRoute } from "./command-router.mjs";
5
5
  import { ColorsDeclaration, ConsoleBuiltin, DividerFunctionDeclaration, LinkFunctionDeclaration, MessageFunctionDeclaration, MessageFunctionDeclarationProps, StripAnsiFunctionDeclaration, TableFunctionDeclaration, TableFunctionDeclarationProps, WrapAnsiFunction, WriteLineFunctionDeclaration } from "./console-builtin.mjs";
6
6
  import { BaseHelp, BaseHelpProps, CommandHelp, CommandHelpProps, HelpCommands, HelpCommandsProps, HelpOptions, HelpOptionsProps, HelpUsage, HelpUsageProps, VirtualHelp, VirtualHelpProps } from "./help.mjs";
7
- import { ArgsUtilities, ColorSupportUtilities, EnvSupportUtilities, ExitFunctionDeclaration, HyperlinkSupportUtilities, UtilsBuiltin, UtilsBuiltinProps } from "./utils-builtin.mjs";
7
+ import { ArgsUtilities, ColorSupportUtilities, ContextUtilities, EnvSupportUtilities, ExitFunctionDeclaration, HyperlinkSupportUtilities, UtilsBuiltin, UtilsBuiltinProps } from "./utils-builtin.mjs";
8
8
  import { VirtualCommandEntry, VirtualCommandEntryProps, VirtualCommandHandlerDeclaration, VirtualCommandHandlerDeclarationProps } from "./virtual-command-entry.mjs";
9
- export { ArgsUtilities, BannerFunctionBodyDeclaration, BannerFunctionBodyDeclarationProps, BannerFunctionDeclaration, BannerFunctionDeclarationProps, BaseHelp, BaseHelpProps, BinEntry, BinEntryProps, ColorSupportUtilities, ColorsDeclaration, CommandEntry, CommandEntryProps, CommandHandlerDeclaration, CommandHandlerDeclarationProps, CommandHelp, CommandHelpProps, CommandInvocation, CommandRouter, CommandRouterProps, CommandRouterRoute, ConsoleBuiltin, DividerFunctionDeclaration, EnvSupportUtilities, ExitFunctionDeclaration, HelpCommands, HelpCommandsProps, HelpOptions, HelpOptionsProps, HelpUsage, HelpUsageProps, HyperlinkSupportUtilities, LinkFunctionDeclaration, MessageFunctionDeclaration, MessageFunctionDeclarationProps, RunApplication, StripAnsiFunctionDeclaration, TableFunctionDeclaration, TableFunctionDeclarationProps, UtilsBuiltin, UtilsBuiltinProps, VirtualCommandEntry, VirtualCommandEntryProps, VirtualCommandHandlerDeclaration, VirtualCommandHandlerDeclarationProps, VirtualHelp, VirtualHelpProps, WrapAnsiFunction, WriteLineFunctionDeclaration };
9
+ export { ArgsUtilities, BannerFunctionBodyDeclaration, BannerFunctionBodyDeclarationProps, BannerFunctionDeclaration, BannerFunctionDeclarationProps, BaseHelp, BaseHelpProps, BinEntry, BinEntryProps, ColorSupportUtilities, ColorsDeclaration, CommandEntry, CommandEntryProps, CommandHandlerDeclaration, CommandHandlerDeclarationProps, CommandHelp, CommandHelpProps, CommandInvocation, CommandRouter, CommandRouterProps, CommandRouterRoute, ConsoleBuiltin, ContextUtilities, DividerFunctionDeclaration, EnvSupportUtilities, ExitFunctionDeclaration, HelpCommands, HelpCommandsProps, HelpOptions, HelpOptionsProps, HelpUsage, HelpUsageProps, HyperlinkSupportUtilities, LinkFunctionDeclaration, MessageFunctionDeclaration, MessageFunctionDeclarationProps, RunApplication, StripAnsiFunctionDeclaration, TableFunctionDeclaration, TableFunctionDeclarationProps, UtilsBuiltin, UtilsBuiltinProps, VirtualCommandEntry, VirtualCommandEntryProps, VirtualCommandHandlerDeclaration, VirtualCommandHandlerDeclarationProps, VirtualHelp, VirtualHelpProps, WrapAnsiFunction, WriteLineFunctionDeclaration };
@@ -5,6 +5,6 @@ import { CommandRouter, CommandRouterRoute } from "./command-router.mjs";
5
5
  import { VirtualCommandEntry, VirtualCommandHandlerDeclaration } from "./virtual-command-entry.mjs";
6
6
  import { CommandEntry, CommandHandlerDeclaration, CommandInvocation } from "./command-entry.mjs";
7
7
  import { ColorsDeclaration, ConsoleBuiltin, DividerFunctionDeclaration, LinkFunctionDeclaration, MessageFunctionDeclaration, StripAnsiFunctionDeclaration, TableFunctionDeclaration, WrapAnsiFunction, WriteLineFunctionDeclaration } from "./console-builtin.mjs";
8
- import { ArgsUtilities, ColorSupportUtilities, EnvSupportUtilities, ExitFunctionDeclaration, HyperlinkSupportUtilities, UtilsBuiltin } from "./utils-builtin.mjs";
8
+ import { ArgsUtilities, ColorSupportUtilities, ContextUtilities, EnvSupportUtilities, ExitFunctionDeclaration, HyperlinkSupportUtilities, UtilsBuiltin } from "./utils-builtin.mjs";
9
9
 
10
- export { ArgsUtilities, BannerFunctionBodyDeclaration, BannerFunctionDeclaration, BaseHelp, BinEntry, ColorSupportUtilities, ColorsDeclaration, CommandEntry, CommandHandlerDeclaration, CommandHelp, CommandInvocation, CommandRouter, CommandRouterRoute, ConsoleBuiltin, DividerFunctionDeclaration, EnvSupportUtilities, ExitFunctionDeclaration, HelpCommands, HelpOptions, HelpUsage, HyperlinkSupportUtilities, LinkFunctionDeclaration, MessageFunctionDeclaration, RunApplication, StripAnsiFunctionDeclaration, TableFunctionDeclaration, UtilsBuiltin, VirtualCommandEntry, VirtualCommandHandlerDeclaration, VirtualHelp, WrapAnsiFunction, WriteLineFunctionDeclaration };
10
+ export { ArgsUtilities, BannerFunctionBodyDeclaration, BannerFunctionDeclaration, BaseHelp, BinEntry, ColorSupportUtilities, ColorsDeclaration, CommandEntry, CommandHandlerDeclaration, CommandHelp, CommandInvocation, CommandRouter, CommandRouterRoute, ConsoleBuiltin, ContextUtilities, DividerFunctionDeclaration, EnvSupportUtilities, ExitFunctionDeclaration, HelpCommands, HelpOptions, HelpUsage, HyperlinkSupportUtilities, LinkFunctionDeclaration, MessageFunctionDeclaration, RunApplication, StripAnsiFunctionDeclaration, TableFunctionDeclaration, UtilsBuiltin, VirtualCommandEntry, VirtualCommandHandlerDeclaration, VirtualHelp, WrapAnsiFunction, WriteLineFunctionDeclaration };
@@ -1,4 +1,5 @@
1
1
  const require_rolldown_runtime = require('../_virtual/rolldown_runtime.cjs');
2
+ const require_components_helpers = require('./helpers.cjs');
2
3
  let __alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
3
4
  let __alloy_js_core = require("@alloy-js/core");
4
5
  let __alloy_js_typescript = require("@alloy-js/typescript");
@@ -497,7 +498,8 @@ function ExitFunctionDeclaration() {
497
498
  default: "{}"
498
499
  }],
499
500
  get children() {
500
- return __alloy_js_core.code`
501
+ return [
502
+ (0, __alloy_js_core_jsx_runtime.memo)(() => __alloy_js_core.code`
501
503
  try {
502
504
  if (isExiting) {
503
505
  return;
@@ -516,7 +518,15 @@ function ExitFunctionDeclaration() {
516
518
  error(\`A fatal error occured while running the application - please contact the ${(0, __shell_shock_core_plugin_utils_context_helpers.getAppTitle)(context)} support team: \\n\\n\${typeof options.exception === "string" ? options.exception : options.exception.message}\`);
517
519
  }
518
520
 
519
- const terminate = (force = false) => {
521
+ const terminate = (force = false) => { `),
522
+ (0, __alloy_js_core_jsx_runtime.createComponent)(__alloy_js_typescript.IfStatement, {
523
+ get condition() {
524
+ return (0, __alloy_js_core_jsx_runtime.createComponent)(require_components_helpers.IsVerbose, {});
525
+ },
526
+ children: __alloy_js_core.code`writeLine("");`
527
+ }),
528
+ (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
529
+ (0, __alloy_js_core_jsx_runtime.memo)(() => __alloy_js_core.code`
520
530
  verbose(\`The ${(0, __shell_shock_core_plugin_utils_context_helpers.getAppTitle)(context)} application exited \${options.exception ? \`early due to an exception\` : "successfully"}\${options.startDate ? \`. Total processing time is \${Date.now() - options.startDate.getTime() > 100_000 ? (Date.now() - options.startDate.getTime()) / 1000 : Date.now() - options.startDate.getTime()} \${Date.now() - options.startDate.getTime() > 100_000 ? "seconds" : "milliseconds"}\` : ""}...\`);
521
531
  if (!options.skipProcessExit) {
522
532
  process.exit(exitCode);
@@ -550,11 +560,144 @@ function ExitFunctionDeclaration() {
550
560
  process.exit(1);
551
561
  }
552
562
  }
553
- `;
563
+ `)
564
+ ];
554
565
  }
555
566
  })
556
567
  ];
557
568
  }
569
+ function ContextUtilities() {
570
+ return __alloy_js_core.code`
571
+ /**
572
+ * The context object for the current command execution, containing the command path and segments.
573
+ */
574
+ interface CommandContext {
575
+ path: string;
576
+ segments: string[];
577
+ }
578
+
579
+ interface UseCommandContext {
580
+ /**
581
+ * Get the current context. Throws if no context is set.
582
+ */
583
+ use: () => CommandContext;
584
+
585
+ /**
586
+ * Call a function with a specific context instance. This is used internally to set the context for command executions, but can also be used by advanced users to manually set the context for specific operations if needed.
587
+ */
588
+ call: <R>(instance: CommandContext, callback: () => R | Promise<R>) => Promise<R>;
589
+ }
590
+
591
+ const _globalThis = (
592
+ typeof globalThis !== "undefined"
593
+ ? globalThis
594
+ : typeof self !== "undefined"
595
+ ? self
596
+ : typeof global !== "undefined"
597
+ ? global
598
+ : typeof window !== "undefined"
599
+ ? window
600
+ : {}
601
+ ) as typeof globalThis;
602
+
603
+ const asyncHandlers: Set<() => void | (() => void)> =
604
+ (_globalThis as any)["__shell-shock_async_handlers__"] ||
605
+ ((_globalThis as any)["__shell-shock_async_handlers__"] = new Set());
606
+
607
+ function createContext(): UseCommandContext {
608
+ let currentInstance: CommandContext | undefined;
609
+ let als = new AsyncLocalStorage<CommandContext>();
610
+ const getCurrentInstance = (): CommandContext | undefined => {
611
+ if (als) {
612
+ const instance = als.getStore();
613
+ if (instance) {
614
+ return instance;
615
+ }
616
+ }
617
+ return currentInstance;
618
+ };
619
+
620
+ const result = {
621
+ use() {
622
+ const instance = getCurrentInstance();
623
+ if (!instance) {
624
+ throw new Error(
625
+ \`The Shell Shock - Command context is not available. Make sure to call useCommand() within a valid context scope.\`
626
+ );
627
+ }
628
+ return instance;
629
+ },
630
+ async call(instance: CommandContext, callback: () => Promise<any> | any) {
631
+ currentInstance = instance;
632
+ const onRestore = () => {
633
+ currentInstance = instance;
634
+ };
635
+ const onLeave = () =>
636
+ currentInstance === instance ? onRestore : undefined;
637
+
638
+ asyncHandlers.add(onLeave);
639
+
640
+ try {
641
+ return await (als ? als.run(instance, callback) : callback());
642
+ } finally {
643
+ asyncHandlers.delete(onLeave);
644
+ }
645
+ },
646
+ };
647
+
648
+ ((_globalThis as any)["__shell-shock__"]) ??= {};
649
+ ((_globalThis as any)["__shell-shock__"]).__command__ = result;
650
+
651
+ return result;
652
+ }
653
+
654
+ /**
655
+ * The global Shell Shock - Command context instance.
656
+ *
657
+ * @internal
658
+ */
659
+ export let internal_commandContext = createContext();
660
+
661
+ /**
662
+ * Get the Shell Shock - Command context for the current application.
663
+ *
664
+ * @param options - The options to use when getting the context.
665
+ * @returns The Shell Shock - Command context for the current application.
666
+ * @throws If the Shell Shock - Command context is not available.
667
+ */
668
+ function useCommand(): CommandContext {
669
+ if (!internal_commandContext) {
670
+ if ((_globalThis as any)["__shell-shock__"]?.__command__) {
671
+ internal_commandContext = (_globalThis as any)["__shell-shock__"].__command__;
672
+ } else {
673
+ internal_commandContext = createContext();
674
+ }
675
+ }
676
+
677
+ return internal_commandContext.use();
678
+ }
679
+
680
+ /**
681
+ * A utility hook function to get the individual segments of the current command path.
682
+ *
683
+ * @returns An array of command path segments.
684
+ * @throws If the command context is not available.
685
+ */
686
+ export function useSegments(): string[] {
687
+ return useCommand().segments;
688
+ }
689
+
690
+ /**
691
+ * A utility hook function to get the full command path as a string.
692
+ *
693
+ * @returns The full command path as a string.
694
+ * @throws If the command context is not available.
695
+ */
696
+ export function usePath(): string {
697
+ return useCommand().path;
698
+ }
699
+ `;
700
+ }
558
701
  /**
559
702
  * A built-in utilities module for Shell Shock.
560
703
  */
@@ -567,17 +710,24 @@ function UtilsBuiltin(props) {
567
710
  get imports() {
568
711
  return (0, defu.default)(rest.imports ?? {}, {
569
712
  "node:os": "os",
570
- "node:process": "process"
713
+ "node:process": "process",
714
+ "node:async_hooks": ["AsyncLocalStorage"]
571
715
  });
572
716
  },
573
717
  get builtinImports() {
574
718
  return (0, defu.default)(rest.builtinImports ?? {}, {
575
- console: ["error", "verbose"],
719
+ console: [
720
+ "error",
721
+ "verbose",
722
+ "writeLine"
723
+ ],
576
724
  env: [
577
725
  "env",
578
726
  "isCI",
579
727
  "isTest",
580
- "isWindows"
728
+ "isWindows",
729
+ "isDevelopment",
730
+ "isDebug"
581
731
  ]
582
732
  });
583
733
  },
@@ -597,6 +747,9 @@ function UtilsBuiltin(props) {
597
747
  (0, __alloy_js_core_jsx_runtime.createComponent)(ColorSupportUtilities, {}),
598
748
  (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
599
749
  (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
750
+ (0, __alloy_js_core_jsx_runtime.createComponent)(ContextUtilities, {}),
751
+ (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
752
+ (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
600
753
  (0, __alloy_js_core_jsx_runtime.createComponent)(ExitFunctionDeclaration, {}),
601
754
  (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
602
755
  (0, __alloy_js_core_jsx_runtime.createIntrinsic)("hbr", {}),
@@ -614,6 +767,7 @@ function UtilsBuiltin(props) {
614
767
  //#endregion
615
768
  exports.ArgsUtilities = ArgsUtilities;
616
769
  exports.ColorSupportUtilities = ColorSupportUtilities;
770
+ exports.ContextUtilities = ContextUtilities;
617
771
  exports.EnvSupportUtilities = EnvSupportUtilities;
618
772
  exports.ExitFunctionDeclaration = ExitFunctionDeclaration;
619
773
  exports.HyperlinkSupportUtilities = HyperlinkSupportUtilities;
@@ -1 +1 @@
1
- {"version":3,"file":"utils-builtin.cjs","names":["code","Show","splitProps","FunctionDeclaration","InterfaceDeclaration","InterfaceMember","VarDeclaration","usePowerlines","BuiltinFile","TSDoc","TSDocLink","TSDocParam","TSDocReturns","getAppTitle","defu","EnvSupportUtilities","_$createComponent","name","doc","initializer","_$createIntrinsic","ColorSupportUtilities","children","type","heading","parameters","default","HyperlinkSupportUtilities","returnType","ArgsUtilities","ExitFunctionDeclaration","context","optional","async","UtilsBuiltin","props","rest","_$mergeProps","id","description","imports","builtinImports","console","env","when","Boolean"],"sources":["../../src/components/utils-builtin.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, Show, splitProps } from \"@alloy-js/core\";\nimport {\n FunctionDeclaration,\n InterfaceDeclaration,\n InterfaceMember,\n VarDeclaration\n} from \"@alloy-js/typescript\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport type { BuiltinFileProps } from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport { BuiltinFile } from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport {\n TSDoc,\n TSDocLink,\n TSDocParam,\n TSDocReturns\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport { getAppTitle } from \"@shell-shock/core/plugin-utils/context-helpers\";\nimport defu from \"defu\";\nimport type { ScriptPresetContext } from \"../types/plugin\";\n\nexport interface UtilsBuiltinProps extends Omit<\n BuiltinFileProps,\n \"id\" | \"description\"\n> {}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\n\nexport function EnvSupportUtilities() {\n return (\n <>\n <VarDeclaration\n export\n const\n name=\"isTTY\"\n doc=\"Detect if stdout.TTY is available\"\n initializer={code`Boolean(process.stdout && process.stdout.isTTY);`}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isMinimal\"\n doc=\"Detect if the current environment is minimal (CI, non-TTY, etc.)\"\n initializer={code` env.MINIMAL || isCI || isTest || !isTTY; `}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isInteractive\"\n doc=\"Detect if the current environment is interactive\"\n initializer={code` !isMinimal && process.stdin?.isTTY && env.TERM !== \"dumb\"; `}\n />\n </>\n );\n}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\nexport function ColorSupportUtilities() {\n return (\n <>\n <InterfaceDeclaration\n export\n name=\"GetColorSupportLevelOptions\"\n doc=\"Options for the getColorSupportLevel function\">\n <InterfaceMember\n name=\"ignoreFlags\"\n type=\"boolean\"\n doc=\"Indicates if the function should skip checking command-line flags for color support\"\n />\n </InterfaceDeclaration>\n <hbr />\n <hbr />\n <TSDoc heading=\"Checks if a specific flag is present in the command line arguments.\">\n <TSDocLink>\n {\"https://github.com/sindresorhus/has-flag/blob/main/index.js\"}\n </TSDocLink>\n <TSDocParam name=\"flag\">\n {'The flag to check for, e.g., \"color\", \"no-color\".'}\n </TSDocParam>\n <TSDocParam name=\"argv\">\n {\n \"The command line arguments to check against. Defaults to global Deno args or process args.\"\n }\n </TSDocParam>\n <TSDocReturns>\n {\"True if the flag is present, false otherwise.\"}\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration\n export\n name=\"getColorSupportLevel\"\n parameters={[\n { name: \"stream\", type: \"NodeJS.WriteStream & { fd: 1 | 2; }\" },\n {\n name: \"options\",\n type: \"GetColorSupportLevelOptions\",\n default: \"{ ignoreFlags: false }\"\n }\n ]}>\n {code`const { ignoreFlags } = options;\n\n let forceColor: number | undefined;\n if (env.FORCE_COLOR !== undefined) {\n forceColor = !env.FORCE_COLOR\n ? 0\n : typeof env.FORCE_COLOR === \"boolean\"\n ? 1\n : typeof env.FORCE_COLOR === \"number\" &&\n [0, 1, 2, 3].includes(Math.min(env.FORCE_COLOR as number, 3))\n ? Math.min(env.FORCE_COLOR as number, 3)\n : undefined;\n }\n\n if (ignoreFlags !== true && forceColor === undefined) {\n if (\n hasFlag(\"no-color\") ||\n hasFlag(\"no-colors\") ||\n hasFlag(\"color=false\") ||\n hasFlag(\"color=never\")\n ) {\n return 0;\n }\n\n if (\n hasFlag(\"color=16m\") ||\n hasFlag(\"color=full\") ||\n hasFlag(\"color=truecolor\")\n ) {\n return 3;\n }\n\n if (hasFlag(\"color=256\")) {\n return 2;\n }\n\n if (\n hasFlag(\"color\") ||\n hasFlag(\"colors\") ||\n hasFlag(\"color=true\") ||\n hasFlag(\"color=always\")\n ) {\n forceColor = 1;\n }\n }\n\n const level = Boolean(env.TF_BUILD) || Boolean(env.AGENT_NAME)\n ? 1\n : stream &&\n !(isTTY || (stream && stream.isTTY)) &&\n forceColor === undefined\n ? 0\n : env.TERM === \"dumb\"\n ? forceColor || 0\n : isWindows\n ? Number(os.release().split(\".\")[0]) >= 10 &&\n Number(os.release().split(\".\")[2]) >= 10_586\n ? Number(os.release().split(\".\")[2]) >= 14_931\n ? 3\n : 2\n : 1\n : isCI\n ? Boolean(env.GITHUB_ACTIONS) ||\n Boolean(env.GITEA_ACTIONS) ||\n Boolean(env.CIRCLECI)\n ? 3\n : Boolean(env.TRAVIS) ||\n Boolean(env.APPVEYOR) ||\n Boolean(env.GITLAB_CI) ||\n Boolean(env.BUILDKITE) ||\n Boolean(env.DRONE) ||\n env.CI_NAME === \"codeship\"\n ? 1\n : forceColor || 0\n : Boolean(env.TEAMCITY_VERSION)\n ? /^(?:9\\.0*[1-9]\\d*\\.|\\d{2,}\\.)/.test(String(env.TEAMCITY_VERSION) || \"\")\n ? 1\n : 0\n : String(env.COLORTERM) === \"truecolor\" ||\n env.TERM === \"xterm-kitty\"\n ? 3\n : Boolean(env.TERM_PROGRAM)\n ? env.TERM_PROGRAM === \"iTerm.app\"\n ? Number.parseInt(\n (env.TERM_PROGRAM_VERSION || \"\").split(\".\")[0] as string,\n 10\n ) >= 3\n ? 3\n : 2\n : env.TERM_PROGRAM === \"Apple_Terminal\"\n ? 2\n : 0\n : /-256(?:color)?$/i.test(env.TERM || \"\")\n ? 2\n : /^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(\n env.TERM || \"\"\n )\n ? 1\n : Boolean(env.COLORTERM);\n\n return typeof level === \"boolean\" || level === 0\n ? false\n : {\n level,\n hasBasic: true,\n has256: level >= 2,\n has16m: level >= 3,\n };\n\n `}\n </FunctionDeclaration>\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"colorSupportLevels\"\n doc=\"Detect the terminal color support level in the current environment\"\n initializer={code` {\n stdout: getColorSupportLevel(process.stdout),\n stderr: getColorSupportLevel(process.stderr),\n }; `}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isColorSupported\"\n doc=\"Detect if terminal color is supported in the current environment\"\n initializer={code` Boolean(colorSupportLevels.stdout); `}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isUnicodeSupported\"\n doc=\"Detect if Unicode characters are supported in the current environment\"\n initializer={code` !isWindows\n ? env.TERM !== \"linux\"\n : Boolean(env.WT_SESSION) ||\n Boolean(env.TERMINUS_SUBLIME) ||\n env.ConEmuTask === \"{cmd::Cmder}\" ||\n env.TERM_PROGRAM === \"Terminus-Sublime\" ||\n env.TERM_PROGRAM === \"vscode\" ||\n env.TERM === \"xterm-256color\" ||\n env.TERM === \"alacritty\" ||\n env.TERM === \"rxvt-unicode\" ||\n env.TERM === \"rxvt-unicode-256color\" ||\n env.TERMINAL_EMULATOR === \"JetBrains-JediTerm\"; `}\n />\n </>\n );\n}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\n\nexport function HyperlinkSupportUtilities() {\n return (\n <>\n <FunctionDeclaration\n name=\"parseVersion\"\n parameters={[{ name: \"version\", type: \"string\", default: '\"\"' }]}>\n {code`if (/^\\d{3,4}$/.test(version)) {\n const match = /(\\d{1,2})(\\d{2})/.exec(version) ?? [];\n\n return {\n major: 0,\n minor: Number.parseInt(match[1]!, 10),\n patch: Number.parseInt(match[2]!, 10)\n };\n }\n\n const versionParts = (version ?? \"\")\n .split(\".\")\n .map(n => Number.parseInt(n, 10));\n\n return {\n major: versionParts[0],\n minor: versionParts[1],\n patch: versionParts[2]\n }; `}\n </FunctionDeclaration>\n <hbr />\n <hbr />\n <TSDoc heading=\"Check if the current environment/terminal supports hyperlinks in the terminal.\">\n <TSDocReturns>\n {\"True if the current environment/terminal supports hyperlinks.\"}\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration\n export\n name=\"isHyperlinkSupported\"\n returnType=\"boolean\">\n {code`if (Boolean(env.FORCE_HYPERLINK)) {\n return true;\n }\n\n if (Boolean(env.NETLIFY)) {\n return true;\n } else if (isColorSupported || isTTY) {\n return false;\n } else if (Boolean(env.WT_SESSION)) {\n return true;\n } else if (isWindows || isMinimal || Boolean(env.TEAMCITY_VERSION)) {\n return false;\n } else if (Boolean(env.TERM_PROGRAM)) {\n const version = parseVersion(env.TERM_PROGRAM_VERSION);\n\n switch (String(env.TERM_PROGRAM)) {\n case \"iTerm.app\": {\n if (version.major === 3) {\n return version.minor !== undefined && version.minor >= 1;\n }\n\n return version.major !== undefined && version.major > 3;\n }\n case \"WezTerm\": {\n return version.major !== undefined && version.major >= 20_200_620;\n }\n\n case \"vscode\": {\n if (Boolean(env.CURSOR_TRACE_ID)) {\n return true;\n }\n\n return (\n version.minor !== undefined &&\n version.major !== undefined &&\n (version.major > 1 || (version.major === 1 && version.minor >= 72))\n );\n }\n\n case \"ghostty\": {\n return true;\n }\n }\n }\n\n if (Boolean(env.VTE_VERSION)) {\n if (env.VTE_VERSION === \"0.50.0\") {\n return false;\n }\n\n const version = parseVersion(env.VTE_VERSION);\n return (\n (version.major !== undefined && version.major > 0) ||\n (version.minor !== undefined && version.minor >= 50)\n );\n }\n\n if (String(env.TERM) === \"alacritty\") {\n return true;\n }\n\n return false; `}\n </FunctionDeclaration>\n </>\n );\n}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\nexport function ArgsUtilities() {\n return (\n <>\n <TSDoc heading=\"Retrieves the command line arguments from Deno or Node.js environments.\">\n <TSDocReturns>\n {\n \"An array of command line arguments from Deno or Node.js environments.\"\n }\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration export name=\"getArgs\">\n {code`return ((globalThis as { Deno?: { args: string[] } })?.Deno?.args ?? process.argv ?? []) as string[];`}\n </FunctionDeclaration>\n <hbr />\n <hbr />\n <TSDoc heading=\"Checks if a specific flag is present in the command line arguments.\">\n <TSDocLink>\n {\"https://github.com/sindresorhus/has-flag/blob/main/index.js\"}\n </TSDocLink>\n <TSDocParam name=\"flag\">\n {\n 'The flag (or an array of flags/aliases) to check for, e.g., \"color\", \"no-color\".'\n }\n </TSDocParam>\n <TSDocParam name=\"argv\">\n {\n \"The command line arguments to check against. Defaults to global Deno args or process args.\"\n }\n </TSDocParam>\n <TSDocReturns>\n {\"True if the flag is present, false otherwise.\"}\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration\n export\n name=\"hasFlag\"\n parameters={[\n { name: \"flag\", type: \"string | string[]\" },\n {\n name: \"argv\",\n type: \"string[]\",\n default: \"getArgs()\"\n }\n ]}>\n <VarDeclaration\n const\n name=\"position\"\n type=\"number\"\n initializer={code`(Array.isArray(flag) ? flag : [flag]).reduce((ret, f) => {\n const pos = argv.findIndex(arg => (f.startsWith(\"-\") ? \"\" : (f.length === 1 ? \"-\" : \"--\") + f)?.toLowerCase() === arg?.toLowerCase() || arg?.toLowerCase().startsWith((f.length === 1 ? \"-\" : \"--\") + f + \"=\"));\n return pos !== -1 ? pos : ret;\n }, -1);`}\n />\n <hbr />\n {code`return position !== -1 && argv.indexOf(\"--\") === -1 || position < argv.indexOf(\"--\");`}\n </FunctionDeclaration>\n </>\n );\n}\n\n/**\n * The `exit` handler function declaration code for the Shell Shock project.\n */\nexport function ExitFunctionDeclaration() {\n const context = usePowerlines<ScriptPresetContext>();\n\n return (\n <>\n <InterfaceDeclaration\n export\n name=\"ExitOptions\"\n doc=\"Options for the exit handler function.\">\n <InterfaceMember\n name=\"exception\"\n optional\n type=\"string | Error\"\n doc=\"An optional exception that caused the exit. This can be a string message or an Error object.\"\n />\n <hbr />\n <InterfaceMember\n name=\"skipProcessExit\"\n optional\n type=\"boolean\"\n doc=\"Indicates whether the exit function should manually exit the process or not. If set to true, the exit function will not call process.exit() and will allow the application to continue running. If set to false or not specified, the exit function will call process.exit() to terminate the application.\"\n />\n <hbr />\n <InterfaceMember\n name=\"isSynchronous\"\n optional\n type=\"boolean\"\n doc=\"Indicates whether the exit function should perform synchronous operations only. If set to true, the exit function will avoid any asynchronous operations during exit. If set to false or not specified, the exit function may perform asynchronous operations as needed.\"\n />\n <hbr />\n <InterfaceMember\n name=\"signal\"\n optional\n type=\"number\"\n doc=\"The signal number that triggered the exit. This is typically used when the shutdown is initiated by a system signal (e.g., SIGINT, SIGTERM).\"\n />\n <hbr />\n <InterfaceMember\n name=\"startDate\"\n optional\n type=\"Date\"\n doc=\"A Date object representing the timestamp when the process started. This can be used to measure the duration of the shutdown process.\"\n />\n </InterfaceDeclaration>\n <hbr />\n <hbr />\n <VarDeclaration\n let\n name=\"isExiting\"\n type=\"boolean\"\n initializer={code`false;`}\n />\n <VarDeclaration\n const\n name=\"callbackAsyncQueue\"\n type=\"Array<[(code: number | string) => Promise<void> | void, number]>\"\n initializer={code`[];`}\n />\n <VarDeclaration\n const\n name=\"callbackSyncQueue\"\n type=\"Array<(code: number | string) => void>\"\n initializer={code`[];`}\n />\n <hbr />\n <hbr />\n <FunctionDeclaration\n export\n async\n name=\"exit\"\n parameters={[\n {\n name: \"options\",\n type: \"ExitOptions\",\n default: \"{}\"\n }\n ]}>\n {code`\n try {\n if (isExiting) {\n return;\n }\n\n isExiting = true;\n\n let exitCode: number | string = 0;\n if ((options.signal !== undefined && options.signal > 0) || options.exception) {\n exitCode = 128 + (options.signal ?? 1);\n } else if (typeof process.exitCode === \"number\" || typeof process.exitCode === \"string\") {\n exitCode = process.exitCode;\n }\n\n if (options.exception) {\n error(\\`A fatal error occured while running the application - please contact the ${getAppTitle(\n context\n )} support team: \\\\n\\\\n\\${typeof options.exception === \"string\" ? options.exception : options.exception.message}\\`);\n }\n\n const terminate = (force = false) => {\n verbose(\\`The ${getAppTitle(\n context\n )} application exited \\${options.exception ? \\`early due to an exception\\` : \"successfully\"}\\${options.startDate ? \\`. Total processing time is \\${Date.now() - options.startDate.getTime() > 100_000 ? (Date.now() - options.startDate.getTime()) / 1000 : Date.now() - options.startDate.getTime()} \\${Date.now() - options.startDate.getTime() > 100_000 ? \"seconds\" : \"milliseconds\"}\\` : \"\"}...\\`);\n if (!options.skipProcessExit) {\n process.exit(exitCode);\n }\n };\n\n for (const callbackSync of callbackSyncQueue) {\n callbackSync(exitCode);\n }\n\n if (!options.isSynchronous) {\n const promises = [];\n let forceAfter = 0;\n for (const [callbackAsync, wait] of callbackAsyncQueue) {\n forceAfter = Math.max(forceAfter, wait);\n promises.push(Promise.resolve(callbackAsync(exitCode)));\n }\n\n const asyncTimer = setTimeout(() => {\n terminate(true);\n }, forceAfter);\n await Promise.all(promises);\n clearTimeout(asyncTimer);\n }\n\n terminate();\n } catch (err) {\n error(\\`The exit process failed to complete\\${(err as Error).message ? \\` - (err as Error).message\\` : \"\"}. Please contact the ${getAppTitle(\n context\n )} support team.\\`);\n\n if (!options.skipProcessExit) {\n process.exit(1);\n }\n }\n `}\n </FunctionDeclaration>\n </>\n );\n}\n\n/**\n * A built-in utilities module for Shell Shock.\n */\nexport function UtilsBuiltin(props: UtilsBuiltinProps) {\n const [{ children }, rest] = splitProps(props, [\"children\"]);\n\n return (\n <BuiltinFile\n id=\"utils\"\n description=\"A collection of helper utilities that ease command-line application development.\"\n {...rest}\n imports={defu(rest.imports ?? {}, {\n \"node:os\": \"os\",\n \"node:process\": \"process\"\n })}\n builtinImports={defu(rest.builtinImports ?? {}, {\n console: [\"error\", \"verbose\"],\n env: [\"env\", \"isCI\", \"isTest\", \"isWindows\"]\n })}>\n <hbr />\n <hbr />\n <ArgsUtilities />\n <hbr />\n <hbr />\n <EnvSupportUtilities />\n <hbr />\n <hbr />\n <HyperlinkSupportUtilities />\n <hbr />\n <hbr />\n <ColorSupportUtilities />\n <hbr />\n <hbr />\n <ExitFunctionDeclaration />\n <hbr />\n <hbr />\n <Show when={Boolean(children)}>{children}</Show>\n </BuiltinFile>\n );\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"utils-builtin.cjs","names":["code","Show","splitProps","FunctionDeclaration","IfStatement","InterfaceDeclaration","InterfaceMember","VarDeclaration","usePowerlines","BuiltinFile","TSDoc","TSDocLink","TSDocParam","TSDocReturns","getAppTitle","defu","IsVerbose","EnvSupportUtilities","_$createComponent","name","doc","initializer","_$createIntrinsic","ColorSupportUtilities","children","type","heading","parameters","default","HyperlinkSupportUtilities","returnType","ArgsUtilities","ExitFunctionDeclaration","context","optional","async","_$memo","condition","ContextUtilities","UtilsBuiltin","props","rest","_$mergeProps","id","description","imports","builtinImports","console","env","when","Boolean"],"sources":["../../src/components/utils-builtin.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, Show, splitProps } from \"@alloy-js/core\";\nimport {\n FunctionDeclaration,\n IfStatement,\n InterfaceDeclaration,\n InterfaceMember,\n VarDeclaration\n} from \"@alloy-js/typescript\";\nimport { usePowerlines } from \"@powerlines/plugin-alloy/core/contexts/context\";\nimport type { BuiltinFileProps } from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport { BuiltinFile } from \"@powerlines/plugin-alloy/typescript/components/builtin-file\";\nimport {\n TSDoc,\n TSDocLink,\n TSDocParam,\n TSDocReturns\n} from \"@powerlines/plugin-alloy/typescript/components/tsdoc\";\nimport { getAppTitle } from \"@shell-shock/core/plugin-utils/context-helpers\";\nimport defu from \"defu\";\nimport type { ScriptPresetContext } from \"../types/plugin\";\nimport { IsVerbose } from \"./helpers\";\n\nexport interface UtilsBuiltinProps extends Omit<\n BuiltinFileProps,\n \"id\" | \"description\"\n> {}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\n\nexport function EnvSupportUtilities() {\n return (\n <>\n <VarDeclaration\n export\n const\n name=\"isTTY\"\n doc=\"Detect if stdout.TTY is available\"\n initializer={code`Boolean(process.stdout && process.stdout.isTTY);`}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isMinimal\"\n doc=\"Detect if the current environment is minimal (CI, non-TTY, etc.)\"\n initializer={code` env.MINIMAL || isCI || isTest || !isTTY; `}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isInteractive\"\n doc=\"Detect if the current environment is interactive\"\n initializer={code` !isMinimal && process.stdin?.isTTY && env.TERM !== \"dumb\"; `}\n />\n </>\n );\n}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\nexport function ColorSupportUtilities() {\n return (\n <>\n <InterfaceDeclaration\n export\n name=\"GetColorSupportLevelOptions\"\n doc=\"Options for the getColorSupportLevel function\">\n <InterfaceMember\n name=\"ignoreFlags\"\n type=\"boolean\"\n doc=\"Indicates if the function should skip checking command-line flags for color support\"\n />\n </InterfaceDeclaration>\n <hbr />\n <hbr />\n <TSDoc heading=\"Checks if a specific flag is present in the command line arguments.\">\n <TSDocLink>\n {\"https://github.com/sindresorhus/has-flag/blob/main/index.js\"}\n </TSDocLink>\n <TSDocParam name=\"flag\">\n {'The flag to check for, e.g., \"color\", \"no-color\".'}\n </TSDocParam>\n <TSDocParam name=\"argv\">\n {\n \"The command line arguments to check against. Defaults to global Deno args or process args.\"\n }\n </TSDocParam>\n <TSDocReturns>\n {\"True if the flag is present, false otherwise.\"}\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration\n export\n name=\"getColorSupportLevel\"\n parameters={[\n { name: \"stream\", type: \"NodeJS.WriteStream & { fd: 1 | 2; }\" },\n {\n name: \"options\",\n type: \"GetColorSupportLevelOptions\",\n default: \"{ ignoreFlags: false }\"\n }\n ]}>\n {code`const { ignoreFlags } = options;\n\n let forceColor: number | undefined;\n if (env.FORCE_COLOR !== undefined) {\n forceColor = !env.FORCE_COLOR\n ? 0\n : typeof env.FORCE_COLOR === \"boolean\"\n ? 1\n : typeof env.FORCE_COLOR === \"number\" &&\n [0, 1, 2, 3].includes(Math.min(env.FORCE_COLOR as number, 3))\n ? Math.min(env.FORCE_COLOR as number, 3)\n : undefined;\n }\n\n if (ignoreFlags !== true && forceColor === undefined) {\n if (\n hasFlag(\"no-color\") ||\n hasFlag(\"no-colors\") ||\n hasFlag(\"color=false\") ||\n hasFlag(\"color=never\")\n ) {\n return 0;\n }\n\n if (\n hasFlag(\"color=16m\") ||\n hasFlag(\"color=full\") ||\n hasFlag(\"color=truecolor\")\n ) {\n return 3;\n }\n\n if (hasFlag(\"color=256\")) {\n return 2;\n }\n\n if (\n hasFlag(\"color\") ||\n hasFlag(\"colors\") ||\n hasFlag(\"color=true\") ||\n hasFlag(\"color=always\")\n ) {\n forceColor = 1;\n }\n }\n\n const level = Boolean(env.TF_BUILD) || Boolean(env.AGENT_NAME)\n ? 1\n : stream &&\n !(isTTY || (stream && stream.isTTY)) &&\n forceColor === undefined\n ? 0\n : env.TERM === \"dumb\"\n ? forceColor || 0\n : isWindows\n ? Number(os.release().split(\".\")[0]) >= 10 &&\n Number(os.release().split(\".\")[2]) >= 10_586\n ? Number(os.release().split(\".\")[2]) >= 14_931\n ? 3\n : 2\n : 1\n : isCI\n ? Boolean(env.GITHUB_ACTIONS) ||\n Boolean(env.GITEA_ACTIONS) ||\n Boolean(env.CIRCLECI)\n ? 3\n : Boolean(env.TRAVIS) ||\n Boolean(env.APPVEYOR) ||\n Boolean(env.GITLAB_CI) ||\n Boolean(env.BUILDKITE) ||\n Boolean(env.DRONE) ||\n env.CI_NAME === \"codeship\"\n ? 1\n : forceColor || 0\n : Boolean(env.TEAMCITY_VERSION)\n ? /^(?:9\\.0*[1-9]\\d*\\.|\\d{2,}\\.)/.test(String(env.TEAMCITY_VERSION) || \"\")\n ? 1\n : 0\n : String(env.COLORTERM) === \"truecolor\" ||\n env.TERM === \"xterm-kitty\"\n ? 3\n : Boolean(env.TERM_PROGRAM)\n ? env.TERM_PROGRAM === \"iTerm.app\"\n ? Number.parseInt(\n (env.TERM_PROGRAM_VERSION || \"\").split(\".\")[0] as string,\n 10\n ) >= 3\n ? 3\n : 2\n : env.TERM_PROGRAM === \"Apple_Terminal\"\n ? 2\n : 0\n : /-256(?:color)?$/i.test(env.TERM || \"\")\n ? 2\n : /^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(\n env.TERM || \"\"\n )\n ? 1\n : Boolean(env.COLORTERM);\n\n return typeof level === \"boolean\" || level === 0\n ? false\n : {\n level,\n hasBasic: true,\n has256: level >= 2,\n has16m: level >= 3,\n };\n\n `}\n </FunctionDeclaration>\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"colorSupportLevels\"\n doc=\"Detect the terminal color support level in the current environment\"\n initializer={code` {\n stdout: getColorSupportLevel(process.stdout),\n stderr: getColorSupportLevel(process.stderr),\n }; `}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isColorSupported\"\n doc=\"Detect if terminal color is supported in the current environment\"\n initializer={code` Boolean(colorSupportLevels.stdout); `}\n />\n <hbr />\n <hbr />\n <VarDeclaration\n export\n const\n name=\"isUnicodeSupported\"\n doc=\"Detect if Unicode characters are supported in the current environment\"\n initializer={code` !isWindows\n ? env.TERM !== \"linux\"\n : Boolean(env.WT_SESSION) ||\n Boolean(env.TERMINUS_SUBLIME) ||\n env.ConEmuTask === \"{cmd::Cmder}\" ||\n env.TERM_PROGRAM === \"Terminus-Sublime\" ||\n env.TERM_PROGRAM === \"vscode\" ||\n env.TERM === \"xterm-256color\" ||\n env.TERM === \"alacritty\" ||\n env.TERM === \"rxvt-unicode\" ||\n env.TERM === \"rxvt-unicode-256color\" ||\n env.TERMINAL_EMULATOR === \"JetBrains-JediTerm\"; `}\n />\n </>\n );\n}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\n\nexport function HyperlinkSupportUtilities() {\n return (\n <>\n <FunctionDeclaration\n name=\"parseVersion\"\n parameters={[{ name: \"version\", type: \"string\", default: '\"\"' }]}>\n {code`if (/^\\d{3,4}$/.test(version)) {\n const match = /(\\d{1,2})(\\d{2})/.exec(version) ?? [];\n\n return {\n major: 0,\n minor: Number.parseInt(match[1]!, 10),\n patch: Number.parseInt(match[2]!, 10)\n };\n }\n\n const versionParts = (version ?? \"\")\n .split(\".\")\n .map(n => Number.parseInt(n, 10));\n\n return {\n major: versionParts[0],\n minor: versionParts[1],\n patch: versionParts[2]\n }; `}\n </FunctionDeclaration>\n <hbr />\n <hbr />\n <TSDoc heading=\"Check if the current environment/terminal supports hyperlinks in the terminal.\">\n <TSDocReturns>\n {\"True if the current environment/terminal supports hyperlinks.\"}\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration\n export\n name=\"isHyperlinkSupported\"\n returnType=\"boolean\">\n {code`if (Boolean(env.FORCE_HYPERLINK)) {\n return true;\n }\n\n if (Boolean(env.NETLIFY)) {\n return true;\n } else if (isColorSupported || isTTY) {\n return false;\n } else if (Boolean(env.WT_SESSION)) {\n return true;\n } else if (isWindows || isMinimal || Boolean(env.TEAMCITY_VERSION)) {\n return false;\n } else if (Boolean(env.TERM_PROGRAM)) {\n const version = parseVersion(env.TERM_PROGRAM_VERSION);\n\n switch (String(env.TERM_PROGRAM)) {\n case \"iTerm.app\": {\n if (version.major === 3) {\n return version.minor !== undefined && version.minor >= 1;\n }\n\n return version.major !== undefined && version.major > 3;\n }\n case \"WezTerm\": {\n return version.major !== undefined && version.major >= 20_200_620;\n }\n\n case \"vscode\": {\n if (Boolean(env.CURSOR_TRACE_ID)) {\n return true;\n }\n\n return (\n version.minor !== undefined &&\n version.major !== undefined &&\n (version.major > 1 || (version.major === 1 && version.minor >= 72))\n );\n }\n\n case \"ghostty\": {\n return true;\n }\n }\n }\n\n if (Boolean(env.VTE_VERSION)) {\n if (env.VTE_VERSION === \"0.50.0\") {\n return false;\n }\n\n const version = parseVersion(env.VTE_VERSION);\n return (\n (version.major !== undefined && version.major > 0) ||\n (version.minor !== undefined && version.minor >= 50)\n );\n }\n\n if (String(env.TERM) === \"alacritty\") {\n return true;\n }\n\n return false; `}\n </FunctionDeclaration>\n </>\n );\n}\n\n/**\n * Generates utilities for detecting terminal color support.\n */\nexport function ArgsUtilities() {\n return (\n <>\n <TSDoc heading=\"Retrieves the command line arguments from Deno or Node.js environments.\">\n <TSDocReturns>\n {\n \"An array of command line arguments from Deno or Node.js environments.\"\n }\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration export name=\"getArgs\">\n {code`return ((globalThis as { Deno?: { args: string[] } })?.Deno?.args ?? process.argv ?? []) as string[];`}\n </FunctionDeclaration>\n <hbr />\n <hbr />\n <TSDoc heading=\"Checks if a specific flag is present in the command line arguments.\">\n <TSDocLink>\n {\"https://github.com/sindresorhus/has-flag/blob/main/index.js\"}\n </TSDocLink>\n <TSDocParam name=\"flag\">\n {\n 'The flag (or an array of flags/aliases) to check for, e.g., \"color\", \"no-color\".'\n }\n </TSDocParam>\n <TSDocParam name=\"argv\">\n {\n \"The command line arguments to check against. Defaults to global Deno args or process args.\"\n }\n </TSDocParam>\n <TSDocReturns>\n {\"True if the flag is present, false otherwise.\"}\n </TSDocReturns>\n </TSDoc>\n <FunctionDeclaration\n export\n name=\"hasFlag\"\n parameters={[\n { name: \"flag\", type: \"string | string[]\" },\n {\n name: \"argv\",\n type: \"string[]\",\n default: \"getArgs()\"\n }\n ]}>\n <VarDeclaration\n const\n name=\"position\"\n type=\"number\"\n initializer={code`(Array.isArray(flag) ? flag : [flag]).reduce((ret, f) => {\n const pos = argv.findIndex(arg => (f.startsWith(\"-\") ? \"\" : (f.length === 1 ? \"-\" : \"--\") + f)?.toLowerCase() === arg?.toLowerCase() || arg?.toLowerCase().startsWith((f.length === 1 ? \"-\" : \"--\") + f + \"=\"));\n return pos !== -1 ? pos : ret;\n }, -1);`}\n />\n <hbr />\n {code`return position !== -1 && argv.indexOf(\"--\") === -1 || position < argv.indexOf(\"--\");`}\n </FunctionDeclaration>\n </>\n );\n}\n\n/**\n * The `exit` handler function declaration code for the Shell Shock project.\n */\nexport function ExitFunctionDeclaration() {\n const context = usePowerlines<ScriptPresetContext>();\n\n return (\n <>\n <InterfaceDeclaration\n export\n name=\"ExitOptions\"\n doc=\"Options for the exit handler function.\">\n <InterfaceMember\n name=\"exception\"\n optional\n type=\"string | Error\"\n doc=\"An optional exception that caused the exit. This can be a string message or an Error object.\"\n />\n <hbr />\n <InterfaceMember\n name=\"skipProcessExit\"\n optional\n type=\"boolean\"\n doc=\"Indicates whether the exit function should manually exit the process or not. If set to true, the exit function will not call process.exit() and will allow the application to continue running. If set to false or not specified, the exit function will call process.exit() to terminate the application.\"\n />\n <hbr />\n <InterfaceMember\n name=\"isSynchronous\"\n optional\n type=\"boolean\"\n doc=\"Indicates whether the exit function should perform synchronous operations only. If set to true, the exit function will avoid any asynchronous operations during exit. If set to false or not specified, the exit function may perform asynchronous operations as needed.\"\n />\n <hbr />\n <InterfaceMember\n name=\"signal\"\n optional\n type=\"number\"\n doc=\"The signal number that triggered the exit. This is typically used when the shutdown is initiated by a system signal (e.g., SIGINT, SIGTERM).\"\n />\n <hbr />\n <InterfaceMember\n name=\"startDate\"\n optional\n type=\"Date\"\n doc=\"A Date object representing the timestamp when the process started. This can be used to measure the duration of the shutdown process.\"\n />\n </InterfaceDeclaration>\n <hbr />\n <hbr />\n <VarDeclaration\n let\n name=\"isExiting\"\n type=\"boolean\"\n initializer={code`false;`}\n />\n <VarDeclaration\n const\n name=\"callbackAsyncQueue\"\n type=\"Array<[(code: number | string) => Promise<void> | void, number]>\"\n initializer={code`[];`}\n />\n <VarDeclaration\n const\n name=\"callbackSyncQueue\"\n type=\"Array<(code: number | string) => void>\"\n initializer={code`[];`}\n />\n <hbr />\n <hbr />\n <FunctionDeclaration\n export\n async\n name=\"exit\"\n parameters={[\n {\n name: \"options\",\n type: \"ExitOptions\",\n default: \"{}\"\n }\n ]}>\n {code`\n try {\n if (isExiting) {\n return;\n }\n\n isExiting = true;\n\n let exitCode: number | string = 0;\n if ((options.signal !== undefined && options.signal > 0) || options.exception) {\n exitCode = 128 + (options.signal ?? 1);\n } else if (typeof process.exitCode === \"number\" || typeof process.exitCode === \"string\") {\n exitCode = process.exitCode;\n }\n\n if (options.exception) {\n error(\\`A fatal error occured while running the application - please contact the ${getAppTitle(\n context\n )} support team: \\\\n\\\\n\\${typeof options.exception === \"string\" ? options.exception : options.exception.message}\\`);\n }\n\n const terminate = (force = false) => { `}\n <IfStatement\n condition={<IsVerbose />}>{code`writeLine(\"\");`}</IfStatement>\n <hbr />\n {code`\n verbose(\\`The ${getAppTitle(\n context\n )} application exited \\${options.exception ? \\`early due to an exception\\` : \"successfully\"}\\${options.startDate ? \\`. Total processing time is \\${Date.now() - options.startDate.getTime() > 100_000 ? (Date.now() - options.startDate.getTime()) / 1000 : Date.now() - options.startDate.getTime()} \\${Date.now() - options.startDate.getTime() > 100_000 ? \"seconds\" : \"milliseconds\"}\\` : \"\"}...\\`);\n if (!options.skipProcessExit) {\n process.exit(exitCode);\n }\n };\n\n for (const callbackSync of callbackSyncQueue) {\n callbackSync(exitCode);\n }\n\n if (!options.isSynchronous) {\n const promises = [];\n let forceAfter = 0;\n for (const [callbackAsync, wait] of callbackAsyncQueue) {\n forceAfter = Math.max(forceAfter, wait);\n promises.push(Promise.resolve(callbackAsync(exitCode)));\n }\n\n const asyncTimer = setTimeout(() => {\n terminate(true);\n }, forceAfter);\n await Promise.all(promises);\n clearTimeout(asyncTimer);\n }\n\n terminate();\n } catch (err) {\n error(\\`The exit process failed to complete\\${(err as Error).message ? \\` - (err as Error).message\\` : \"\"}. Please contact the ${getAppTitle(\n context\n )} support team.\\`);\n\n if (!options.skipProcessExit) {\n process.exit(1);\n }\n }\n `}\n </FunctionDeclaration>\n </>\n );\n}\n\nexport function ContextUtilities() {\n return code`\n /**\n * The context object for the current command execution, containing the command path and segments.\n */\n interface CommandContext {\n path: string;\n segments: string[];\n }\n\n interface UseCommandContext {\n /**\n * Get the current context. Throws if no context is set.\n */\n use: () => CommandContext;\n\n /**\n * Call a function with a specific context instance. This is used internally to set the context for command executions, but can also be used by advanced users to manually set the context for specific operations if needed.\n */\n call: <R>(instance: CommandContext, callback: () => R | Promise<R>) => Promise<R>;\n }\n\n const _globalThis = (\n typeof globalThis !== \"undefined\"\n ? globalThis\n : typeof self !== \"undefined\"\n ? self\n : typeof global !== \"undefined\"\n ? global\n : typeof window !== \"undefined\"\n ? window\n : {}\n ) as typeof globalThis;\n\n const asyncHandlers: Set<() => void | (() => void)> =\n (_globalThis as any)[\"__shell-shock_async_handlers__\"] ||\n ((_globalThis as any)[\"__shell-shock_async_handlers__\"] = new Set());\n\n function createContext(): UseCommandContext {\n let currentInstance: CommandContext | undefined;\n let als = new AsyncLocalStorage<CommandContext>();\n const getCurrentInstance = (): CommandContext | undefined => {\n if (als) {\n const instance = als.getStore();\n if (instance) {\n return instance;\n }\n }\n return currentInstance;\n };\n\n const result = {\n use() {\n const instance = getCurrentInstance();\n if (!instance) {\n throw new Error(\n \\`The Shell Shock - Command context is not available. Make sure to call useCommand() within a valid context scope.\\`\n );\n }\n return instance;\n },\n async call(instance: CommandContext, callback: () => Promise<any> | any) {\n currentInstance = instance;\n const onRestore = () => {\n currentInstance = instance;\n };\n const onLeave = () =>\n currentInstance === instance ? onRestore : undefined;\n\n asyncHandlers.add(onLeave);\n\n try {\n return await (als ? als.run(instance, callback) : callback());\n } finally {\n asyncHandlers.delete(onLeave);\n }\n },\n };\n\n ((_globalThis as any)[\"__shell-shock__\"]) ??= {};\n ((_globalThis as any)[\"__shell-shock__\"]).__command__ = result;\n\n return result;\n }\n\n /**\n * The global Shell Shock - Command context instance.\n *\n * @internal\n */\n export let internal_commandContext = createContext();\n\n /**\n * Get the Shell Shock - Command context for the current application.\n *\n * @param options - The options to use when getting the context.\n * @returns The Shell Shock - Command context for the current application.\n * @throws If the Shell Shock - Command context is not available.\n */\n function useCommand(): CommandContext {\n if (!internal_commandContext) {\n if ((_globalThis as any)[\"__shell-shock__\"]?.__command__) {\n internal_commandContext = (_globalThis as any)[\"__shell-shock__\"].__command__;\n } else {\n internal_commandContext = createContext();\n }\n }\n\n return internal_commandContext.use();\n }\n\n /**\n * A utility hook function to get the individual segments of the current command path.\n *\n * @returns An array of command path segments.\n * @throws If the command context is not available.\n */\n export function useSegments(): string[] {\n return useCommand().segments;\n }\n\n /**\n * A utility hook function to get the full command path as a string.\n *\n * @returns The full command path as a string.\n * @throws If the command context is not available.\n */\n export function usePath(): string {\n return useCommand().path;\n }\n `;\n}\n\n/**\n * A built-in utilities module for Shell Shock.\n */\nexport function UtilsBuiltin(props: UtilsBuiltinProps) {\n const [{ children }, rest] = splitProps(props, [\"children\"]);\n\n return (\n <BuiltinFile\n id=\"utils\"\n description=\"A collection of helper utilities that ease command-line application development.\"\n {...rest}\n imports={defu(rest.imports ?? {}, {\n \"node:os\": \"os\",\n \"node:process\": \"process\",\n \"node:async_hooks\": [\"AsyncLocalStorage\"]\n })}\n builtinImports={defu(rest.builtinImports ?? {}, {\n console: [\"error\", \"verbose\", \"writeLine\"],\n env: [\"env\", \"isCI\", \"isTest\", \"isWindows\", \"isDevelopment\", \"isDebug\"]\n })}>\n <hbr />\n <hbr />\n <ArgsUtilities />\n <hbr />\n <hbr />\n <EnvSupportUtilities />\n <hbr />\n <hbr />\n <HyperlinkSupportUtilities />\n <hbr />\n <hbr />\n <ColorSupportUtilities />\n <hbr />\n <hbr />\n <ContextUtilities />\n <hbr />\n <hbr />\n <ExitFunctionDeclaration />\n <hbr />\n <hbr />\n <Show when={Boolean(children)}>{children}</Show>\n </BuiltinFile>\n );\n}\n"],"mappings":"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"}