Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(bundling): remove extraneous logs from @nrwl/vite:build executor #13479

Merged
merged 1 commit into from Nov 29, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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