@motiadev/workbench 0.17.1-beta.183-457518 → 0.17.1-beta.183-597313
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/dist/middleware.js +25 -7
- package/package.json +4 -4
package/dist/middleware.js
CHANGED
|
@@ -666,13 +666,31 @@ const applyMiddleware = async ({ app, port, workbenchBase, plugins }) => {
|
|
|
666
666
|
path.join(__dirname, "./node_modules")
|
|
667
667
|
] }
|
|
668
668
|
},
|
|
669
|
-
resolve: {
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
669
|
+
resolve: {
|
|
670
|
+
alias: {
|
|
671
|
+
"@": path.resolve(__dirname, "./src"),
|
|
672
|
+
"@/assets": path.resolve(__dirname, "./src/assets"),
|
|
673
|
+
"lucide-react/dynamic": "lucide-react/dynamic.mjs",
|
|
674
|
+
"lucide-react": "lucide-react/dist/cjs/lucide-react.js"
|
|
675
|
+
},
|
|
676
|
+
dedupe: [
|
|
677
|
+
"react",
|
|
678
|
+
"react-dom",
|
|
679
|
+
"react/jsx-runtime",
|
|
680
|
+
"react/jsx-dev-runtime",
|
|
681
|
+
"react/compiler-runtime"
|
|
682
|
+
]
|
|
683
|
+
},
|
|
684
|
+
optimizeDeps: {
|
|
685
|
+
exclude: ["@motiadev/workbench"],
|
|
686
|
+
include: [
|
|
687
|
+
"react",
|
|
688
|
+
"react-dom",
|
|
689
|
+
"react/jsx-runtime",
|
|
690
|
+
"react/jsx-dev-runtime",
|
|
691
|
+
"react/compiler-runtime"
|
|
692
|
+
]
|
|
693
|
+
},
|
|
676
694
|
plugins: [
|
|
677
695
|
react({ babel: { plugins: [[require.resolve("babel-plugin-react-compiler"), {}]] } }),
|
|
678
696
|
processCwdPlugin(),
|
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.1-beta.183-
|
|
4
|
+
"version": "0.17.1-beta.183-597313",
|
|
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/
|
|
43
|
-
"@motiadev/ui": "0.17.1-beta.183-
|
|
44
|
-
"@motiadev/
|
|
42
|
+
"@motiadev/stream-client-react": "0.17.1-beta.183-597313",
|
|
43
|
+
"@motiadev/ui": "0.17.1-beta.183-597313",
|
|
44
|
+
"@motiadev/core": "0.17.1-beta.183-597313"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@rollup/plugin-babel": "^6.1.0",
|