motia 0.11.0-beta.155-574632 → 0.11.0-beta.155-839108

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/cjs/dev.js CHANGED
@@ -25,7 +25,7 @@ const dev = async (port, hostname, disableVerbose, enableMermaid, motiaFileStora
25
25
  const baseDir = process.cwd();
26
26
  const isVerbose = !disableVerbose;
27
27
  (0, analytics_1.identifyUser)();
28
- const stepFiles = (0, generate_locked_data_1.getStepFiles)(baseDir);
28
+ const stepFiles = [...(0, generate_locked_data_1.getStepFiles)(baseDir), ...(0, generate_locked_data_1.getStreamFiles)(baseDir)];
29
29
  const hasPythonFiles = stepFiles.some((file) => file.endsWith('.py'));
30
30
  (0, core_1.trackEvent)('dev_server_started', {
31
31
  port,
package/dist/esm/dev.js CHANGED
@@ -4,7 +4,7 @@ import path from 'path';
4
4
  import { deployEndpoints } from './cloud/endpoints';
5
5
  import { isTutorialDisabled, workbenchBase } from './constants';
6
6
  import { createDevWatchers } from './dev-watchers';
7
- import { generateLockedData, getStepFiles } from './generate-locked-data';
7
+ import { generateLockedData, getStepFiles, getStreamFiles } from './generate-locked-data';
8
8
  import { loadMotiaConfig } from './load-motia-config';
9
9
  import { processPlugins } from './plugins';
10
10
  import { activatePythonVenv } from './utils/activate-python-env';
@@ -19,7 +19,7 @@ export const dev = async (port, hostname, disableVerbose, enableMermaid, motiaFi
19
19
  const baseDir = process.cwd();
20
20
  const isVerbose = !disableVerbose;
21
21
  identifyUser();
22
- const stepFiles = getStepFiles(baseDir);
22
+ const stepFiles = [...getStepFiles(baseDir), ...getStreamFiles(baseDir)];
23
23
  const hasPythonFiles = stepFiles.some((file) => file.endsWith('.py'));
24
24
  trackEvent('dev_server_started', {
25
25
  port,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "motia",
3
3
  "description": "Build production-grade backends with a single primitive. APIs, background jobs, Queues, Workflows, and AI agents - unified in one system with built-in State management, Streaming, and Observability.",
4
- "version": "0.11.0-beta.155-574632",
4
+ "version": "0.11.0-beta.155-839108",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -47,9 +47,9 @@
47
47
  "table": "^6.9.0",
48
48
  "ts-node": "^10.9.2",
49
49
  "zod": "^4.1.12",
50
- "@motiadev/core": "0.11.0-beta.155-574632",
51
- "@motiadev/stream-client-node": "0.11.0-beta.155-574632",
52
- "@motiadev/workbench": "0.11.0-beta.155-574632"
50
+ "@motiadev/workbench": "0.11.0-beta.155-839108",
51
+ "@motiadev/core": "0.11.0-beta.155-839108",
52
+ "@motiadev/stream-client-node": "0.11.0-beta.155-839108"
53
53
  },
54
54
  "devDependencies": {
55
55
  "@amplitude/analytics-types": "^2.9.2",