Skip to content

Commit

Permalink
fix: merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
BioPhoton committed Sep 24, 2024
1 parent bea4dd2 commit 96ef3e4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions projects/build-env/src/plugin/build-env.plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ function verdaccioTargets(
Omit<StartVerdaccioOptions, 'projectName'>
): Record<string, TargetConfiguration> {
const { name: envProject } = projectConfig;
const { environmentsDir, ...startVerdaccioOptions } = options;
const { environmentsDir, ...verdaccioOptions } = options;
const environmentDir = join(environmentsDir, envProject);

return {
Expand All @@ -195,7 +195,8 @@ function verdaccioTargets(
port: uniquePort(),
storage: join(environmentDir, 'storage'),
clear: true,
projectName,
environmentDir,
projectName: envProject,
...verdaccioOptions,
},
},
Expand Down

0 comments on commit 96ef3e4

Please sign in to comment.