diff --git a/scripts/postinstall.js b/scripts/postinstall.js index b18422db..e5166f16 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -1,5 +1,4 @@ /* eslint-disable no-console */ -import { execSync } from 'child_process'; import { readFileSync, writeFileSync } from 'fs'; import { join } from 'path'; @@ -26,10 +25,10 @@ try { } // pnpm build - console.log('Building the project...'); - execSync('pnpm build', { stdio: 'inherit' }); + // console.log('Building the project...'); + // execSync('pnpm build', { stdio: 'inherit' }); - console.log('Successfully built the project'); + // console.log('Successfully built the project'); } catch (error) { console.error(`Error updating ${packageName}/package.json:`, error); }