Skip to content

Commit

Permalink
fix(misc): fix removing the projects with jest configs (#4874)
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenPandaz committed Feb 24, 2021
1 parent f62d495 commit 5b4192c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/workspace/src/generators/remove/remove.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ export async function removeGenerator(tree: Tree, schema: Schema) {
const project = readProjectConfiguration(tree, schema.projectName);
checkDependencies(tree, schema);
checkTargets(tree, schema);
updateJestConfig(tree, schema, project);
removeProject(tree, project);
removeProjectConfig(tree, schema);
updateTsconfig(tree, schema, project);
updateJestConfig(tree, schema, project);
if (!schema.skipFormat) {
await formatFiles(tree);
}
Expand Down

0 comments on commit 5b4192c

Please sign in to comment.