Skip to content

Commit

Permalink
fix(bundling): remove extraneous logs from @nrwl/vite:build executor (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz committed Nov 29, 2022
1 parent 3a2d24c commit 9d5a45d
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/vite/src/executors/build/build.impl.ts
Expand Up @@ -13,12 +13,7 @@ export default async function viteBuildExecutor(
) {
const projectRoot = context.workspace.projects[context.projectName].root;

logger.info(`NX Vite build starting ...`);
const buildResult = await runInstance(
await getBuildAndSharedConfig(options, context)
);
logger.info(`NX Vite build finished ...`);
logger.info(`NX Vite files available in ${options.outputPath}`);
await runInstance(await getBuildAndSharedConfig(options, context));

// For buildable libs, copy package.json if it exists.
if (existsSync(join(projectRoot, 'package.json'))) {
Expand Down

0 comments on commit 9d5a45d

Please sign in to comment.