* Persists the set of build dependencies required to determine whether the * cache can be restored in a future compilation. * @param {Iterable<string>} dependencies list of all build dependencies * @param {CallbackCache<void>} callback signals when the dependencies are stored * @returns {voi
(dependencies, callback)
| 143 | * @returns {void} |
| 144 | */ |
| 145 | storeBuildDependencies(dependencies, callback) { |
| 146 | this.hooks.storeBuildDependencies.callAsync( |
| 147 | dependencies, |
| 148 | makeWebpackErrorCallback(callback, "Cache.hooks.storeBuildDependencies") |
| 149 | ); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Signals that webpack is entering an idle phase and cache backends may flush |
no test coverage detected