@forge/cli-shared
9.2.0-next.5-experimental-a1600ff9.2.0-next.3-experimental-fda9df6
out/apps/create-an-app.js~
out/apps/create-an-app.jsModified+2−8
Index: package/out/apps/create-an-app.js
===================================================================
--- package/out/apps/create-an-app.js
+++ package/out/apps/create-an-app.js
@@ -18,17 +18,11 @@
this.registerAppCommand = registerAppCommand;
this.packageInstaller = packageInstaller;
this.statsig = statsig;
}
- async execute({ name, description, template, directory, requiredProduct, installationTarget, developerSpaceId, billingConsent, appFeatures }) {
+ async execute({ name, description, template, directory, requiredProduct, installationTarget, developerSpaceId, billingConsent }) {
await this.templater.downloadAndExtract(template, directory);
- const result = await this.registerAppCommand.registerApp({
- name,
- description,
- developerSpaceId,
- billingConsent,
- ...(appFeatures && { appFeatures })
- }, directory, {
+ const result = await this.registerAppCommand.registerApp({ name, description, developerSpaceId, billingConsent }, directory, {
shouldPrependAppName: true,
requiredProduct,
installationTarget
});