1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

Removed gulp and organized package.json

This commit is contained in:
Mark McDowall
2021-04-24 11:48:57 -07:00
parent a3bb2f1c32
commit dde53b12a8
11 changed files with 1920 additions and 4537 deletions
@@ -0,0 +1,11 @@
const loaderUtils = require('loader-utils');
module.exports = function cssVariablesLoader(source) {
const options = loaderUtils.getOptions(this);
options.cssVarsFiles.forEach((cssVarsFile) => {
this.addDependency(cssVarsFile);
});
return source;
};