From cb7cd72cf31cf8f9d1a3ec12de92a309a360fab5 Mon Sep 17 00:00:00 2001 From: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com> Date: Mon, 28 Jun 2021 03:27:15 +0200 Subject: [PATCH] build: clean node modules on build (#3055) --- angular.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/angular.json b/angular.json index 9b83a73f9f..45579721f5 100644 --- a/angular.json +++ b/angular.json @@ -153,6 +153,9 @@ { "command": "yarn tsc -p modules/store/tsconfig.schematics.json" }, + { + "command": "yarn rimraf node_modules/@ngrx/store" + }, { "command": "yarn mkdirp node_modules/@ngrx/store" }, @@ -207,6 +210,9 @@ { "command": "yarn tsc -p modules/effects/tsconfig.schematics.json" }, + { + "command": "yarn rimraf node_modules/@ngrx/effects" + }, { "command": "yarn mkdirp node_modules/@ngrx/effects" }, @@ -309,6 +315,9 @@ { "command": "yarn tsc -p modules/entity/tsconfig.schematics.json" }, + { + "command": "yarn rimraf node_modules/@ngrx/entity" + }, { "command": "yarn mkdirp node_modules/@ngrx/entity" },