* @param {LoaderContext} loaderContext loader context * @returns {boolean} true when mode is production, otherwise false
(loaderContext)
| 170 | * @returns {boolean} true when mode is production, otherwise false |
| 171 | */ |
| 172 | function isProductionLikeMode(loaderContext) { |
| 173 | return loaderContext.mode === "production" || !loaderContext.mode; |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Derives the sass options from the loader context and normalizes its values with sane defaults. |
no outgoing calls
no test coverage detected
searching dependent graphs…