2
0
mirror of https://github.com/frappe/frappe.git synced 2024-06-13 08:32:22 +00:00
frappe/esbuild/sass_options.js

25 lines
631 B
JavaScript

let path = require("path");
let { apps_path, app_list } = require("./utils");
let app_paths = app_list.map((app) => path.resolve(apps_path, app));
let node_modules_path = app_paths.map((app_path) => path.resolve(app_path, "node_modules"));
module.exports = {
includePaths: [...node_modules_path, ...app_paths],
quietDeps: true,
importer: function (url) {
if (url.startsWith("~")) {
// strip ~ so that it can resolve from node_modules
url = url.slice(1);
}
if (url.endsWith(".css")) {
// strip .css from end of path
url = url.slice(0, -4);
}
// normal file, let it go
return {
file: url,
};
},
};