@evolve.labs/devflow 0.8.1 → 0.8.2

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/lib/constants.js CHANGED
@@ -1,6 +1,6 @@
1
1
  const path = require('node:path');
2
2
 
3
- const VERSION = '0.8.1';
3
+ const VERSION = '0.8.2';
4
4
 
5
5
  // Root of the installed npm package (where source files live)
6
6
  const PACKAGE_ROOT = path.resolve(__dirname, '..');
package/lib/web.js CHANGED
@@ -13,7 +13,7 @@ async function webCommand(options) {
13
13
  // 1. Verify web/ directory exists
14
14
  if (!fs.existsSync(webDir)) {
15
15
  console.error('Error: Web IDE files not found.');
16
- console.error('Re-install devflow with: npm install -g devflow-agents');
16
+ console.error('Re-install devflow with: npm install -g @evolve.labs/devflow');
17
17
  process.exit(1);
18
18
  }
19
19
 
@@ -29,7 +29,7 @@ async function webCommand(options) {
29
29
  if (!fs.existsSync(nodeModules)) {
30
30
  console.log('Installing web dependencies...');
31
31
  try {
32
- execSync('npm install --production', {
32
+ execSync('npm install --omit=dev', {
33
33
  cwd: webDir,
34
34
  stdio: 'inherit',
35
35
  timeout: 120_000,
@@ -59,7 +59,7 @@ async function webCommand(options) {
59
59
  if (!fs.existsSync(nextDir)) {
60
60
  console.log('Building web dashboard...');
61
61
  try {
62
- execSync('npx next build', {
62
+ execSync('npx next build --webpack', {
63
63
  cwd: webDir,
64
64
  stdio: 'inherit',
65
65
  timeout: 300_000,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evolve.labs/devflow",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Multi-agent system for software development with Claude Code. 6 specialized agents (Strategist, Architect, System Designer, Builder, Guardian, Chronicler) as slash commands.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -7,7 +7,9 @@ const nextConfig = {
7
7
  transpilePackages: ['@monaco-editor/react'],
8
8
 
9
9
  // Turbopack config (Next.js 16+)
10
- turbopack: {},
10
+ turbopack: {
11
+ root: __dirname,
12
+ },
11
13
 
12
14
  // Exclude native modules from client-side bundling
13
15
  serverExternalPackages: ['node-pty'],