1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-19 10:45:40 +02:00
Radarr/frontend/build/webpack/css-variables-loader.js
Mark McDowall 7b2fd5140b Switch to eslint for linting
(cherry picked from commit a18c3774661f466727ab46315211aecb43ef1def)
2023-03-08 14:31:03 +00:00

13 lines
317 B
JavaScript

// eslint-disable-next-line filenames/match-exported
const loaderUtils = require('loader-utils');
module.exports = function cssVariablesLoader(source) {
const options = loaderUtils.getOptions(this);
options.cssVarsFiles.forEach((cssVarsFile) => {
this.addDependency(cssVarsFile);
});
return source;
};