vant/packages/vant-cli/src/compiler/compile-sass.ts
2020-12-02 15:49:34 +08:00

22 lines
482 B
TypeScript

import { renderSync } from 'sass';
// allow to import from node_modules
// @import "~package-name/var.scss"
const tildeImporter = (url: string) => {
if (url.includes('~')) {
url = url.replace('~', '');
if (!url.includes('.scss')) {
url += '.scss';
}
url = require.resolve(url);
}
return { file: url };
};
export async function compileSass(filePath: string) {
const { css } = renderSync({ file: filePath, importer: tildeImporter });
return css;
}