@embeddable.com/sdk-core 3.5.4 → 3.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embeddable.com/sdk-core",
3
- "version": "3.5.4",
3
+ "version": "3.6.0",
4
4
  "description": "Core Embeddable SDK module responsible for web-components bundling and publishing.",
5
5
  "keywords": [
6
6
  "embeddable",
@@ -58,6 +58,7 @@ describe("defineConfig", () => {
58
58
  "srcDir": "/embeddable-sdk/packages/core-sdk",
59
59
  "stencilBuild": "/embeddable-sdk/packages/core-sdk",
60
60
  "tmpDir": "/embeddable-sdk/packages/core-sdk",
61
+ "viteConfig": {},
61
62
  },
62
63
  "core": {
63
64
  "configsDir": "/embeddable-sdk/packages/core-sdk",
@@ -71,7 +72,6 @@ describe("defineConfig", () => {
71
72
  "previewBaseUrl": "previewBaseUrl",
72
73
  "pushBaseUrl": "pushBaseUrl",
73
74
  "rollbarAccessToken": "rollbarAccessToken",
74
- "viteConfig": {},
75
75
  }
76
76
  `);
77
77
  });
@@ -84,6 +84,7 @@ export default ({
84
84
  ? path.resolve(clientRoot, errorFallbackComponent)
85
85
  : undefined,
86
86
  bundleHash: undefined, // This will be set by the build process
87
+ viteConfig,
87
88
  },
88
89
  outputOptions: {
89
90
  typesEntryPointFilename: "embeddable-types-entry-point.js",
@@ -97,6 +98,5 @@ export default ({
97
98
  rollbarAccessToken:
98
99
  rollbarAccessToken ?? "5c6028038d844bf1835a0f4db5f55d9e",
99
100
  plugins,
100
- viteConfig,
101
101
  };
102
102
  };