mirror of
https://github.com/youzan/vant.git
synced 2026-01-16 07:02:16 +08:00
37 lines
848 B
TypeScript
37 lines
848 B
TypeScript
import { get } from 'lodash';
|
|
import { existsSync } from 'fs';
|
|
import { join, isAbsolute } from 'path';
|
|
import { getVantConfig } from '../common';
|
|
import { STYLE_DIR, SRC_DIR } from './constant';
|
|
|
|
type CSS_LANG = 'css' | 'less' | 'scss';
|
|
|
|
function getCssLang(): CSS_LANG {
|
|
const vantConfig = getVantConfig();
|
|
const preprocessor = get(vantConfig, 'build.css.preprocessor', 'less');
|
|
|
|
if (preprocessor === 'sass') {
|
|
return 'scss';
|
|
}
|
|
|
|
return preprocessor;
|
|
}
|
|
|
|
export const CSS_LANG = getCssLang();
|
|
|
|
export function getCssBaseFile() {
|
|
const vantConfig = getVantConfig();
|
|
let path = join(STYLE_DIR, `base.${CSS_LANG}`);
|
|
|
|
const baseFile = get(vantConfig, 'build.css.base', '');
|
|
if (baseFile) {
|
|
path = isAbsolute(baseFile) ? baseFile : join(SRC_DIR, baseFile);
|
|
}
|
|
|
|
if (existsSync(path)) {
|
|
return path;
|
|
}
|
|
|
|
return null;
|
|
}
|