We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb70876 commit 3728615Copy full SHA for 3728615
.circleci/config.yml
@@ -21,4 +21,10 @@ jobs:
21
key: ng-project-{{ .Branch }}-{{ checksum "package-lock.json" }}
22
paths:
23
- "node_modules"
24
+ - restore_cache:
25
+ key: ng-cache-{{ .Branch }}-{{ checksum "package-lock.json" }}
26
- run: npm run build
27
+ - save_cache:
28
29
+ paths:
30
+ - ".angular/cache"
angular.json
@@ -94,5 +94,11 @@
94
}
95
96
97
+ },
98
+ "cli": {
99
+ "cache": {
100
+ "enabled": true,
101
+ "environment": "all"
102
+ }
103
104
0 commit comments