zdev 0.1.3 → 0.1.4

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/index.js CHANGED
@@ -3083,7 +3083,7 @@ program2.command("create <name>").description("Create a new TanStack Start proje
3083
3083
  program2.command("init [path]").description("Initialize zdev for a project").option("-s, --seed", "Create initial seed data from current Convex state").action(async (path, options) => {
3084
3084
  await init(path, options);
3085
3085
  });
3086
- program2.command("start <feature>").description("Start working on a feature (creates worktree, starts servers)").option("-p, --project <path>", "Project path (default: current directory)", ".").option("--port <number>", "Frontend port (auto-allocated if not specified)", parseInt).option("--local", "Local only - skip public URL setup via Traefik").option("-s, --seed", "Import seed data into the new worktree").option("-b, --base-branch <branch>", "Base branch to create from", "origin/main").option("-w, --web-dir <dir>", "Subdirectory containing package.json (auto-detected if not specified)").action(async (feature, options) => {
3086
+ program2.command("start <feature>").description("Start working on a feature (creates worktree, starts servers)").option("-p, --project <path>", "Project path (default: current directory)", ".").option("--port <number>", "Frontend port (auto-allocated if not specified)", parseInt).option("--local", "Local only - skip public URL setup via Traefik").option("-s, --seed", "Import seed data into the new worktree").option("-b, --base-branch <branch>", "Base branch to create from (auto-detected if not specified)").option("-w, --web-dir <dir>", "Subdirectory containing package.json (auto-detected if not specified)").action(async (feature, options) => {
3087
3087
  await start(feature, options.project, {
3088
3088
  port: options.port,
3089
3089
  local: options.local,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zdev",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Multi-agent worktree development environment for cloud dev with preview URLs",
5
5
  "type": "module",
6
6
  "bin": {
package/src/index.ts CHANGED
@@ -52,7 +52,7 @@ program
52
52
  .option("--port <number>", "Frontend port (auto-allocated if not specified)", parseInt)
53
53
  .option("--local", "Local only - skip public URL setup via Traefik")
54
54
  .option("-s, --seed", "Import seed data into the new worktree")
55
- .option("-b, --base-branch <branch>", "Base branch to create from", "origin/main")
55
+ .option("-b, --base-branch <branch>", "Base branch to create from (auto-detected if not specified)")
56
56
  .option("-w, --web-dir <dir>", "Subdirectory containing package.json (auto-detected if not specified)")
57
57
  .action(async (feature, options) => {
58
58
  await start(feature, options.project, {