@motiadev/workbench 0.13.0-beta.162-660221 → 0.13.0-beta.162-650022

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.
@@ -662,7 +662,7 @@ const applyMiddleware = async ({ app, port, workbenchBase, plugins }) => {
662
662
  "lucide-react": "lucide-react/dist/cjs/lucide-react.js"
663
663
  } },
664
664
  plugins: [
665
- react(),
665
+ react({ babel: { plugins: ["babel-plugin-react-compiler"] } }),
666
666
  processCwdPlugin(),
667
667
  reoPlugin(),
668
668
  motiaPluginsPlugin(plugins),
@@ -1,9 +1,9 @@
1
1
  import { useThemeStore } from '@motiadev/ui'
2
2
  import type React from 'react'
3
3
  import { memo, useEffect } from 'react'
4
- // @ts-expect-error: PNG asset types
4
+ // @ts-expect-error
5
5
  import motiaLogoDark from '../../assets/motia-dark.png'
6
- // @ts-expect-error: PNG asset types
6
+ // @ts-expect-error
7
7
  import motiaLogoLight from '../../assets/motia-light.png'
8
8
  import { useMotiaConfigStore } from '../../stores/use-motia-config-store'
9
9
  import { Tutorial } from '../tutorial/tutorial'
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.13.0-beta.162-660221",
4
+ "version": "0.13.0-beta.162-650022",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -13,17 +13,6 @@
13
13
  },
14
14
  "dependencies": {
15
15
  "@monaco-editor/react": "^4.7.0",
16
- "@radix-ui/react-collapsible": "^1.1.12",
17
- "@radix-ui/react-dialog": "^1.1.15",
18
- "@radix-ui/react-dropdown-menu": "^2.1.16",
19
- "@radix-ui/react-label": "^2.1.8",
20
- "@radix-ui/react-navigation-menu": "^1.2.14",
21
- "@radix-ui/react-scroll-area": "^1.2.10",
22
- "@radix-ui/react-select": "^2.2.6",
23
- "@radix-ui/react-separator": "^1.1.8",
24
- "@radix-ui/react-slot": "^1.2.4",
25
- "@radix-ui/react-switch": "^1.2.6",
26
- "@radix-ui/react-tabs": "^1.1.13",
27
16
  "@radix-ui/react-tooltip": "^1.2.8",
28
17
  "@tailwindcss/postcss": "^4.1.17",
29
18
  "@vitejs/plugin-react": "^5.1.1",
@@ -32,7 +21,6 @@
32
21
  "class-variance-authority": "^0.7.1",
33
22
  "clsx": "^2.1.1",
34
23
  "dagre": "^0.8.5",
35
- "date-fns": "^4.1.0",
36
24
  "fast-deep-equal": "^3.1.3",
37
25
  "json-schema": "^0.4.0",
38
26
  "lucide-react": "^0.554.0",
@@ -41,7 +29,6 @@
41
29
  "react-dom": "^19.2.0",
42
30
  "react-router-dom": "^7.9.6",
43
31
  "react-syntax-highlighter": "^16.1.0",
44
- "react-use-resizable": "^0.2.0",
45
32
  "react18-json-view": "^0.2.9",
46
33
  "tailwind-merge": "^3.4.0",
47
34
  "tailwindcss": "^4.1.17",
@@ -51,13 +38,15 @@
51
38
  "vite": "^7.2.4",
52
39
  "zod": "^4.1.13",
53
40
  "zustand": "^5.0.8",
54
- "@motiadev/stream-client-react": "0.13.0-beta.162-660221",
55
- "@motiadev/ui": "0.13.0-beta.162-660221",
56
- "@motiadev/core": "0.13.0-beta.162-660221"
41
+ "@motiadev/core": "0.13.0-beta.162-650022",
42
+ "@motiadev/stream-client-react": "0.13.0-beta.162-650022",
43
+ "@motiadev/ui": "0.13.0-beta.162-650022"
57
44
  },
58
45
  "devDependencies": {
59
46
  "@bosh-code/tsdown-plugin-inject-css": "^2.0.0",
60
47
  "@bosh-code/tsdown-plugin-tailwindcss": "^1.0.1",
48
+ "@rollup/plugin-babel": "^6.1.0",
49
+ "@rollup/plugin-url": "^8.0.2",
61
50
  "@testing-library/jest-dom": "^6.9.1",
62
51
  "@testing-library/react": "^16.3.0",
63
52
  "@testing-library/user-event": "^14.6.1",
@@ -70,10 +59,12 @@
70
59
  "@types/react-dom": "^19.2.3",
71
60
  "@types/react-router-dom": "^5.3.3",
72
61
  "@types/react-syntax-highlighter": "^15.5.13",
62
+ "babel-plugin-react-compiler": "^1.0.0",
73
63
  "jest": "^30.2.0",
74
64
  "jest-environment-jsdom": "^30.2.0",
65
+ "publint": "^0.3.15",
75
66
  "ts-jest": "^29.4.5",
76
- "tsdown": "^0.16.6"
67
+ "tsdown": "^0.16.8"
77
68
  },
78
69
  "scripts": {
79
70
  "lint": "biome check .",