mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(@vant/cli): compile sass tilde failed (#10144)
This commit is contained in:
parent
f63ea390b6
commit
18921e2d1d
@ -1,5 +1,7 @@
|
|||||||
import { createRequire } from 'module';
|
import { createRequire } from 'module';
|
||||||
|
|
||||||
|
const require = createRequire(import.meta.url);
|
||||||
|
|
||||||
// allow to import from node_modules
|
// allow to import from node_modules
|
||||||
// @import "~package-name/var.scss"
|
// @import "~package-name/var.scss"
|
||||||
const tildeImporter = (url: string) => {
|
const tildeImporter = (url: string) => {
|
||||||
@ -16,7 +18,6 @@ const tildeImporter = (url: string) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export async function compileSass(filePath: string) {
|
export async function compileSass(filePath: string) {
|
||||||
const require = createRequire(import.meta.url);
|
|
||||||
const { renderSync } = require('sass');
|
const { renderSync } = require('sass');
|
||||||
const { css } = renderSync({ file: filePath, importer: tildeImporter });
|
const { css } = renderSync({ file: filePath, importer: tildeImporter });
|
||||||
return css;
|
return css;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user