@embeddable.com/sdk-core 2.4.3 → 2.4.5

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/lib/index.js CHANGED
@@ -4766,7 +4766,7 @@ async function getWorkspaces(ctx, token) {
4766
4766
  }
4767
4767
  }
4768
4768
 
4769
- var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientId, }) => {
4769
+ var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientId, errorFallbackComponent, }) => {
4770
4770
  const coreRoot = path__namespace.resolve(__dirname, "..");
4771
4771
  const clientRoot = process.cwd();
4772
4772
  return {
@@ -4783,6 +4783,9 @@ var defineConfig = ({ plugins, pushBaseUrl, audienceUrl, authDomain, authClientI
4783
4783
  componentDir: path__namespace.resolve(clientRoot, ".embeddable-build", "component"),
4784
4784
  stencilBuild: path__namespace.resolve(clientRoot, ".embeddable-build", "dist", "embeddable-wrapper"),
4785
4785
  archiveFile: path__namespace.resolve(clientRoot, "embeddable-build.zip"),
4786
+ errorFallbackComponent: errorFallbackComponent
4787
+ ? path__namespace.resolve(clientRoot, errorFallbackComponent)
4788
+ : undefined,
4786
4789
  },
4787
4790
  outputOptions: {
4788
4791
  typesEntryPointFilename: "embeddable-types-entry-point.js",