@kurly-growth/growthman 0.1.15 → 0.1.16

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/bin/cli.js +2 -2
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -58,12 +58,12 @@ if (!fs.existsSync(dbPath)) {
58
58
  });
59
59
  }
60
60
 
61
- // .next 폴더가 없으면 빌드
61
+ // .next 폴더가 없으면 빌드 (Turbopack은 node_modules 내 TS 파일을 지원하지 않음)
62
62
  const nextDir = path.join(packageDir, '.next');
63
63
  if (!fs.existsSync(nextDir)) {
64
64
  console.log('Building application (first run)...');
65
65
  const nextPath = getBinPath('next', 'next');
66
- execSync(`node "${nextPath}" build`, {
66
+ execSync(`node "${nextPath}" build --no-turbopack`, {
67
67
  cwd: packageDir,
68
68
  stdio: 'inherit',
69
69
  env,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kurly-growth/growthman",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "description": "Local mock API server with UI dashboard",
5
5
  "bin": {
6
6
  "growthman": "./bin/cli.js"