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.
- package/dist/{core-XPB2Z5AR.js → chunk-X2ZHQ6T5.js} +6 -2
- package/dist/cli.cjs +3062 -0
- package/dist/cli.d.cts +13 -0
- package/dist/cli.d.ts +13 -0
- package/dist/cli.js +28 -0
- package/dist/index.cjs +1293 -1614
- package/dist/index.js +4 -1
- package/package.json +13 -1
|
@@ -2942,7 +2942,7 @@ export class ${controllerName} {}
|
|
|
2942
2942
|
};
|
|
2943
2943
|
|
|
2944
2944
|
// src/core/core.ts
|
|
2945
|
-
|
|
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
|
+
};
|