@embeddable.com/sdk-react 0.0.4 → 0.0.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @embeddable.com/sdk-react
2
2
 
3
+ ## 0.0.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix core import.
8
+
3
9
  ## 0.0.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@embeddable.com/sdk-react",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "TODO.",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",
@@ -2,7 +2,7 @@ const fs = require("fs/promises");
2
2
  const path = require("path");
3
3
  const vite = require("vite");
4
4
  const viteReactPlugin = require('@vitejs/plugin-react');
5
- const core = require("@embeddable-sdk/core/src/build");
5
+ const core = require("@embeddable.com/sdk-core/src/build");
6
6
 
7
7
  process.on('message', async ({ ctx }) => {
8
8
  await generate(ctx);