From e6b7dbe1c9fb67cdb292a5de55076693f661139e Mon Sep 17 00:00:00 2001 From: Trish Ta Date: Fri, 24 Apr 2026 14:44:36 -0400 Subject: [PATCH] Fix web pixel bundle_ui step --- .../models/extensions/specifications/web_pixel_extension.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/src/cli/models/extensions/specifications/web_pixel_extension.ts b/packages/app/src/cli/models/extensions/specifications/web_pixel_extension.ts index a6547c226cd..89ff8a60cfb 100644 --- a/packages/app/src/cli/models/extensions/specifications/web_pixel_extension.ts +++ b/packages/app/src/cli/models/extensions/specifications/web_pixel_extension.ts @@ -33,11 +33,11 @@ const webPixelSpec = createExtensionSpecification({ partnersWebIdentifier: 'web_pixel', schema: WebPixelSchema, appModuleFeatures: (_) => ['esbuild', 'single_js_entry_path'], - getOutputRelativePath: (extension: ExtensionInstance) => `dist/${extension.handle}.js`, + getOutputRelativePath: (extension: ExtensionInstance) => `${extension.handle}.js`, clientSteps: [ { lifecycle: 'deploy', - steps: [{id: 'bundle-ui', name: 'Bundle UI Extension', type: 'bundle_ui', config: {}}], + steps: [{id: 'bundle-ui', name: 'Bundle UI Extension', type: 'bundle_ui', config: {bundleFolder: 'dist/'}}], }, ], deployConfig: async (config, _) => {