idea-manager 1.3.2 → 1.3.3

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/next.config.mjs CHANGED
@@ -1,7 +1,6 @@
1
1
  /** @type {import('next').NextConfig} */
2
2
  const nextConfig = {
3
3
  serverExternalPackages: ['sql.js/dist/sql-asm.js'],
4
- turbopack: false,
5
4
  };
6
5
 
7
6
  export default nextConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "idea-manager",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "description": "Turn free-form brainstorming into structured task trees with AI-generated prompts. Built-in MCP Server for autonomous AI agent execution. Local-first with SQLite, cross-PC sync via Git.",
5
5
  "keywords": [
6
6
  "brainstorm",
package/src/cli.ts CHANGED
@@ -133,7 +133,7 @@ program
133
133
  const buildResult = spawn(process.execPath, [nextCli, 'build'], {
134
134
  cwd: PKG_ROOT,
135
135
  stdio: 'inherit',
136
- env: { ...process.env, NODE_ENV: 'production' },
136
+ env: { ...process.env, NODE_ENV: 'production', NEXT_TURBOPACK: '0' },
137
137
  });
138
138
  await new Promise<void>((resolve, reject) => {
139
139
  buildResult.on('exit', (code) => {