Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(core): configFilePath included in hash (#6881)
closes #6880
  • Loading branch information
AgentEnder committed Aug 31, 2021
1 parent 1a6f253 commit a656959
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 a656959

Please sign in to comment.