Skip to content

Commit 88f163e

Browse files
ZackDeRoseFrozenPandaz
authored andcommittedOct 3, 2024··
fix(core): fixing target groups not merging (#28280)
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> <!-- This is the behavior we have today --> When multiple plugins touch the `project > metadata` (note NOT `project > target > metadata`), only the last plugin to run has their `metadata.targetGroups` data present, meaning currently `targetGroups` is clobbering instead of merging. <!-- This is the behavior we should expect with the changes in this PR --> When multiple plugins write to `metadata.targetGroups`, that data is merged together, so data written by all plugins is present. <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes # (cherry picked from commit 7ff387d)

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed
 

‎packages/nx/src/project-graph/utils/project-configuration-utils.spec.ts

+41
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,47 @@ describe('project-configuration-utils', () => {
965965
sourceMap['libs/lib-a']['metadata.targetGroups.group1.1']
966966
).toEqual(['dummy', 'dummy.ts']);
967967
});
968+
969+
it('should not clobber targetGroups', () => {
970+
const rootMap = new RootMapBuilder()
971+
.addProject({
972+
root: 'libs/lib-a',
973+
name: 'lib-a',
974+
metadata: {
975+
targetGroups: {
976+
group2: ['target3'],
977+
},
978+
},
979+
})
980+
.getRootMap();
981+
const sourceMap: ConfigurationSourceMaps = {
982+
'libs/lib-a': {},
983+
};
984+
985+
mergeProjectConfigurationIntoRootMap(
986+
rootMap,
987+
{
988+
root: 'libs/lib-a',
989+
name: 'lib-a',
990+
metadata: {
991+
technologies: ['technology'],
992+
targetGroups: {
993+
group1: ['target1', 'target2'],
994+
},
995+
},
996+
},
997+
sourceMap,
998+
['dummy', 'dummy.ts']
999+
);
1000+
1001+
expect(rootMap['libs/lib-a'].metadata).toEqual({
1002+
technologies: ['technology'],
1003+
targetGroups: {
1004+
group1: ['target1', 'target2'],
1005+
group2: ['target3'],
1006+
},
1007+
});
1008+
});
9681009
});
9691010

9701011
describe('source map', () => {

‎packages/nx/src/project-graph/utils/project-configuration-utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ export function mergeMetadata<T = ProjectMetadata | TargetMetadata>(
252252
}
253253
}
254254
} else {
255-
result[metadataKey] = value;
255+
result[metadataKey][key] = value[key];
256256
if (sourceMap) {
257257
sourceMap[`${baseSourceMapPath}.${metadataKey}`] =
258258
sourceInformation;

0 commit comments

Comments
 (0)
Please sign in to comment.