jettypod 4.4.28 → 4.4.29

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.
Files changed (2) hide show
  1. package/jettypod.js +1 -1
  2. package/package.json +2 -2
package/jettypod.js CHANGED
@@ -2004,7 +2004,7 @@ switch (command) {
2004
2004
  if (availablePort) {
2005
2005
  // Start dashboard in background with project path
2006
2006
  console.log('🚀 Starting dashboard...');
2007
- const dashboardProcess = spawn('npm', ['run', 'dev', '--', '-p', String(availablePort)], {
2007
+ const dashboardProcess = spawn('npm', ['run', 'start', '--', '-p', String(availablePort)], {
2008
2008
  cwd: dashboardPath,
2009
2009
  detached: true,
2010
2010
  stdio: 'ignore',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jettypod",
3
- "version": "4.4.28",
3
+ "version": "4.4.29",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {
@@ -34,7 +34,7 @@
34
34
  "test:unit": "NODE_ENV=test jest",
35
35
  "test:unit:watch": "NODE_ENV=test jest --watch",
36
36
  "test:cleanup": "node scripts/test-cleanup.js",
37
- "prepublishOnly": "echo '🔄 Syncing skills to templates...' && cp -r .claude/skills/* skills-templates/ && echo '✅ Skills synced'",
37
+ "prepublishOnly": "echo '🔄 Syncing skills to templates...' && cp -r .claude/skills/* skills-templates/ && echo '✅ Skills synced' && echo '🔨 Building dashboard...' && cd apps/dashboard && npm install && npm run build && echo '✅ Dashboard built'",
38
38
  "dashboard": "npm run dev --prefix apps/dashboard",
39
39
  "dashboard:build": "npm run build --prefix apps/dashboard",
40
40
  "dashboard:start": "npm run start --prefix apps/dashboard"