@mmapp/react-compiler 0.1.0-alpha.14 → 0.1.0-alpha.15

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/cli/index.js CHANGED
@@ -19320,15 +19320,14 @@ async function main() {
19320
19320
  } else {
19321
19321
  console.log(`[mmrc] Starting local engine: ${resolution.path} (${resolution.source})`);
19322
19322
  const { spawn: spawnProcess } = require("child_process");
19323
- engineProcess = spawnProcess(resolution.path, [], {
19323
+ engineProcess = spawnProcess(resolution.path, ["--dev"], {
19324
19324
  stdio: ["ignore", "pipe", "pipe"],
19325
19325
  env: {
19326
19326
  ...process.env,
19327
- DATABASE_URL: `sqlite://${process.cwd()}/dev.db`,
19328
- JWT_SECRET: "dev-secret-mmrc-local",
19329
19327
  PORT: String(apiPort),
19330
19328
  RUST_LOG: "mm_api=info,mm_storage=info"
19331
- }
19329
+ },
19330
+ cwd: process.cwd()
19332
19331
  });
19333
19332
  if (engineProcess.stdout) {
19334
19333
  engineProcess.stdout.on("data", (data) => {
@@ -374,15 +374,14 @@ async function main() {
374
374
  } else {
375
375
  console.log(`[mmrc] Starting local engine: ${resolution.path} (${resolution.source})`);
376
376
  const { spawn: spawnProcess } = __require("child_process");
377
- engineProcess = spawnProcess(resolution.path, [], {
377
+ engineProcess = spawnProcess(resolution.path, ["--dev"], {
378
378
  stdio: ["ignore", "pipe", "pipe"],
379
379
  env: {
380
380
  ...process.env,
381
- DATABASE_URL: `sqlite://${process.cwd()}/dev.db`,
382
- JWT_SECRET: "dev-secret-mmrc-local",
383
381
  PORT: String(apiPort),
384
382
  RUST_LOG: "mm_api=info,mm_storage=info"
385
- }
383
+ },
384
+ cwd: process.cwd()
386
385
  });
387
386
  if (engineProcess.stdout) {
388
387
  engineProcess.stdout.on("data", (data) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mmapp/react-compiler",
3
- "version": "0.1.0-alpha.14",
3
+ "version": "0.1.0-alpha.15",
4
4
  "description": "Babel plugin + Vite integration for compiling React workflows to Pure Form IR",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -66,7 +66,7 @@
66
66
  "@babel/plugin-syntax-typescript": "^7.24.0",
67
67
  "@babel/traverse": "^7.24.0",
68
68
  "@babel/types": "^7.24.0",
69
- "@mmapp/player-core": "^0.1.0-alpha.14",
69
+ "@mmapp/player-core": "^0.1.0-alpha.15",
70
70
  "glob": "^10.3.10"
71
71
  },
72
72
  "peerDependencies": {