idea-manager 1.3.2 → 1.3.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/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.4",
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
@@ -130,7 +130,7 @@ program
130
130
  const buildDir = path.join(PKG_ROOT, '.next');
131
131
  if (!fs.existsSync(buildDir)) {
132
132
  console.log('\n IM - First run: building... (this may take a minute)\n');
133
- const buildResult = spawn(process.execPath, [nextCli, 'build'], {
133
+ const buildResult = spawn(process.execPath, [nextCli, 'build', '--webpack'], {
134
134
  cwd: PKG_ROOT,
135
135
  stdio: 'inherit',
136
136
  env: { ...process.env, NODE_ENV: 'production' },