mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* feat(@vant/cli): using esbuild to transform script * chore: update babel doc * chore: update lock * chore: update * fix: format
129 lines
3.6 KiB
TypeScript
129 lines
3.6 KiB
TypeScript
import fse from 'fs-extra';
|
|
import { get } from 'lodash-es';
|
|
import { sep, join } from 'path';
|
|
import { SRC_DIR, getVantConfig } from './constant.js';
|
|
import type { InlineConfig } from 'vite';
|
|
|
|
const { lstatSync, existsSync, readdirSync, readFileSync, outputFileSync } =
|
|
fse;
|
|
|
|
export const EXT_REGEXP = /\.\w+$/;
|
|
export const SFC_REGEXP = /\.(vue)$/;
|
|
export const DEMO_REGEXP = new RegExp('\\' + sep + 'demo$');
|
|
export const TEST_REGEXP = new RegExp('\\' + sep + 'test$');
|
|
export const ASSET_REGEXP = /\.(png|jpe?g|gif|webp|ico|jfif|svg|woff2?|ttf)$/i;
|
|
export const STYLE_REGEXP = /\.(css|less|scss)$/;
|
|
export const SCRIPT_REGEXP = /\.(js|ts|jsx|tsx)$/;
|
|
export const JSX_REGEXP = /\.(j|t)sx$/;
|
|
export const ENTRY_EXTS = ['js', 'ts', 'tsx', 'jsx', 'vue'];
|
|
|
|
export function removeExt(path: string) {
|
|
return path.replace('.js', '');
|
|
}
|
|
|
|
export function replaceExt(path: string, ext: string) {
|
|
return path.replace(EXT_REGEXP, ext);
|
|
}
|
|
|
|
export function hasDefaultExport(code: string) {
|
|
return code.includes('export default') || code.includes('export { default }');
|
|
}
|
|
|
|
export function getComponents() {
|
|
const EXCLUDES = ['.DS_Store'];
|
|
const dirs = readdirSync(SRC_DIR);
|
|
|
|
return dirs
|
|
.filter((dir) => !EXCLUDES.includes(dir))
|
|
.filter((dir) =>
|
|
ENTRY_EXTS.some((ext) => {
|
|
const path = join(SRC_DIR, dir, `index.${ext}`);
|
|
if (existsSync(path)) {
|
|
return hasDefaultExport(readFileSync(path, 'utf-8'));
|
|
}
|
|
|
|
return false;
|
|
})
|
|
);
|
|
}
|
|
|
|
export const isDir = (dir: string) => lstatSync(dir).isDirectory();
|
|
export const isDemoDir = (dir: string) => DEMO_REGEXP.test(dir);
|
|
export const isTestDir = (dir: string) => TEST_REGEXP.test(dir);
|
|
export const isAsset = (path: string) => ASSET_REGEXP.test(path);
|
|
export const isSfc = (path: string) => SFC_REGEXP.test(path);
|
|
export const isStyle = (path: string) => STYLE_REGEXP.test(path);
|
|
export const isScript = (path: string) => SCRIPT_REGEXP.test(path);
|
|
export const isJsx = (path: string) => JSX_REGEXP.test(path);
|
|
|
|
const camelizeRE = /-(\w)/g;
|
|
const pascalizeRE = /(\w)(\w*)/g;
|
|
|
|
export function camelize(str: string): string {
|
|
return str.replace(camelizeRE, (_, c) => c.toUpperCase());
|
|
}
|
|
|
|
export function pascalize(str: string): string {
|
|
return camelize(str).replace(
|
|
pascalizeRE,
|
|
(_, c1, c2) => c1.toUpperCase() + c2
|
|
);
|
|
}
|
|
|
|
export function decamelize(str: string, sep = '-') {
|
|
return str
|
|
.replace(/([a-z\d])([A-Z])/g, '$1' + sep + '$2')
|
|
.replace(/([A-Z]+)([A-Z][a-z\d]+)/g, '$1' + sep + '$2')
|
|
.toLowerCase();
|
|
}
|
|
|
|
export function normalizePath(path: string): string {
|
|
return path.replace(/\\/g, '/');
|
|
}
|
|
|
|
export type ModuleEnv = 'esmodule' | 'commonjs';
|
|
export type NodeEnv = 'production' | 'development' | 'test';
|
|
export type BuildTarget = 'site' | 'package';
|
|
|
|
export function setModuleEnv(value: ModuleEnv) {
|
|
process.env.BABEL_MODULE = value;
|
|
}
|
|
|
|
export function setNodeEnv(value: NodeEnv) {
|
|
process.env.NODE_ENV = value;
|
|
}
|
|
|
|
export function setBuildTarget(value: BuildTarget) {
|
|
process.env.BUILD_TARGET = value;
|
|
}
|
|
|
|
export function isDev() {
|
|
return process.env.NODE_ENV === 'development';
|
|
}
|
|
|
|
// smarter outputFileSync
|
|
// skip output if file content unchanged
|
|
export function smartOutputFile(filePath: string, content: string) {
|
|
if (existsSync(filePath)) {
|
|
const previousContent = readFileSync(filePath, 'utf-8');
|
|
|
|
if (previousContent === content) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
outputFileSync(filePath, content);
|
|
}
|
|
|
|
export function mergeCustomViteConfig(config: InlineConfig) {
|
|
const vantConfig = getVantConfig();
|
|
const configureVite = get(vantConfig, 'build.configureVite');
|
|
|
|
if (configureVite) {
|
|
return configureVite(config);
|
|
}
|
|
return config;
|
|
}
|
|
|
|
export { getVantConfig };
|