Skip to content

Commit

Permalink
fix(core): configFilePath included in hash (nrwl#6881)
Browse files Browse the repository at this point in the history
closes nrwl#6880
  • Loading branch information
AgentEnder authored and sumitparakh committed Sep 1, 2021
1 parent 7074960 commit 5302b8c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/tao/src/shared/workspace.spec.ts
Expand Up @@ -29,7 +29,6 @@ describe('workspace', () => {
};

const resolved = inlineProjectConfigurations(inlineConfig);
delete resolved.projects.lib1.configFilePath;
expect(resolved).toEqual({
...inlineConfig,
projects: {
Expand Down
2 changes: 1 addition & 1 deletion packages/tao/src/shared/workspace.ts
Expand Up @@ -593,7 +593,7 @@ export function inlineProjectConfigurations(
if (typeof config === 'string') {
const configFilePath = path.join(root, config, 'project.json');
const fileConfig = readJsonFile(configFilePath);
w.projects[project] = { ...fileConfig, configFilePath };
w.projects[project] = fileConfig;
}
}
);
Expand Down

0 comments on commit 5302b8c

Please sign in to comment.