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 23, 2021
1 parent 54b6461 commit 1cf9295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/workspace/src/generators/remove/remove.ts
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 1cf9295

Please sign in to comment.