mirror of
https://github.com/youzan/vant.git
synced 2025-10-18 17:51:54 +00:00
feat(cli): support sass tilde importer
This commit is contained in:
@@ -1,6 +1,21 @@
|
||||
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 });
|
||||
const { css } = renderSync({ file: filePath, importer: tildeImporter });
|
||||
return css;
|
||||
}
|
||||
|
Reference in New Issue
Block a user