opticore-feature-component 1.0.8 → 1.1.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.
@@ -2942,7 +2942,7 @@ export class ${controllerName} {}
2942
2942
  };
2943
2943
 
2944
2944
  // src/core/core.ts
2945
- (async () => {
2945
+ async function runFeatureCommand() {
2946
2946
  UWelcomeMessage();
2947
2947
  const featureChoice = await choiceFeatureCleanModule();
2948
2948
  if (featureChoice === "custom_feature") {
@@ -2996,4 +2996,8 @@ export class ${controllerName} {}
2996
2996
  process3.exit();
2997
2997
  }
2998
2998
  }
2999
- })();
2999
+ }
3000
+
3001
+ export {
3002
+ runFeatureCommand
3003
+ };