@motiadev/workbench 0.17.6-beta.188-353260 → 0.17.6-beta.188-982004

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.
Files changed (2) hide show
  1. package/dist/middleware.js +13 -6
  2. package/package.json +4 -4
@@ -664,12 +664,19 @@ const applyMiddleware = async ({ app, port, workbenchBase, plugins }) => {
664
664
  path.join(__dirname, "./node_modules")
665
665
  ] }
666
666
  },
667
- resolve: { alias: {
668
- "@": path.resolve(__dirname, "./src"),
669
- "@/assets": path.resolve(__dirname, "./src/assets"),
670
- "lucide-react/dynamic": "lucide-react/dynamic.mjs",
671
- "lucide-react": "lucide-react/dist/cjs/lucide-react.js"
672
- } },
667
+ resolve: {
668
+ dedupe: [
669
+ "react",
670
+ "react-dom",
671
+ "react/jsx-runtime"
672
+ ],
673
+ alias: {
674
+ "@": path.resolve(__dirname, "./src"),
675
+ "@/assets": path.resolve(__dirname, "./src/assets"),
676
+ "lucide-react/dynamic": "lucide-react/dynamic.mjs",
677
+ "lucide-react": "lucide-react/dist/cjs/lucide-react.js"
678
+ }
679
+ },
673
680
  optimizeDeps: { exclude: ["@motiadev/workbench"] },
674
681
  plugins: [
675
682
  react({ babel: { plugins: ["babel-plugin-react-compiler"] } }),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@motiadev/workbench",
3
3
  "description": "A web-based interface for building and managing Motia workflows.",
4
- "version": "0.17.6-beta.188-353260",
4
+ "version": "0.17.6-beta.188-982004",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -39,9 +39,9 @@
39
39
  "vite": "^7.2.4",
40
40
  "zod": "^4.1.13",
41
41
  "zustand": "^5.0.8",
42
- "@motiadev/core": "0.17.6-beta.188-353260",
43
- "@motiadev/stream-client-react": "0.17.6-beta.188-353260",
44
- "@motiadev/ui": "0.17.6-beta.188-353260"
42
+ "@motiadev/core": "0.17.6-beta.188-982004",
43
+ "@motiadev/ui": "0.17.6-beta.188-982004",
44
+ "@motiadev/stream-client-react": "0.17.6-beta.188-982004"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@rollup/plugin-babel": "^6.1.0",