* Returns the cache facade instance. * @param {string} name cache name * @returns {CacheFacade} the cache facade instance
(name)
| 379 | * @returns {CacheFacade} the cache facade instance |
| 380 | */ |
| 381 | getCache(name) { |
| 382 | return new CacheFacade( |
| 383 | this.cache, |
| 384 | `${this.compilerPath}${name}`, |
| 385 | this.options.output.hashFunction |
| 386 | ); |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * Gets infrastructure logger. |