mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(vant-cli): fix Windows system build style problems (#5655)
This commit is contained in:
parent
9371bc06c8
commit
1d8e2654f5
@ -1,4 +1,4 @@
|
|||||||
import { join } from 'path';
|
import { sep, join } from 'path';
|
||||||
import {
|
import {
|
||||||
lstatSync,
|
lstatSync,
|
||||||
existsSync,
|
existsSync,
|
||||||
@ -15,8 +15,8 @@ import {
|
|||||||
|
|
||||||
export const EXT_REGEXP = /\.\w+$/;
|
export const EXT_REGEXP = /\.\w+$/;
|
||||||
export const SFC_REGEXP = /\.(vue)$/;
|
export const SFC_REGEXP = /\.(vue)$/;
|
||||||
export const DEMO_REGEXP = /\/demo$/;
|
export const DEMO_REGEXP = new RegExp('\\' + sep + 'demo$');
|
||||||
export const TEST_REGEXP = /\/test$/;
|
export const TEST_REGEXP = new RegExp('\\' + sep + 'test$');
|
||||||
export const STYLE_REGEXP = /\.(css|less|scss)$/;
|
export const STYLE_REGEXP = /\.(css|less|scss)$/;
|
||||||
export const SCRIPT_REGEXP = /\.(js|ts|jsx|tsx)$/;
|
export const SCRIPT_REGEXP = /\.(js|ts|jsx|tsx)$/;
|
||||||
export const ENTRY_EXTS = ['js', 'ts', 'tsx', 'jsx', 'vue'];
|
export const ENTRY_EXTS = ['js', 'ts', 'tsx', 'jsx', 'vue'];
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
* Build style entry of all components
|
* Build style entry of all components
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { join, relative } from 'path';
|
import { sep, join, relative } from 'path';
|
||||||
import { outputFileSync } from 'fs-extra';
|
import { outputFileSync } from 'fs-extra';
|
||||||
import { getComponents, replaceExt } from '../common';
|
import { getComponents, replaceExt } from '../common';
|
||||||
import { CSS_LANG, getCssBaseFile } from '../common/css';
|
import { CSS_LANG, getCssBaseFile } from '../common/css';
|
||||||
@ -72,7 +72,7 @@ function genEntry(params: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
content += depsPath.map(template).join('\n');
|
content += depsPath.map(template).join('\n');
|
||||||
|
content = content.replace(new RegExp('\\' + sep, 'g'), '/');
|
||||||
outputFileSync(outputFile, content);
|
outputFileSync(outputFile, content);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { join } from 'path';
|
import { relative, sep, join } from 'path';
|
||||||
import { CSS_LANG } from '../common/css';
|
import { CSS_LANG } from '../common/css';
|
||||||
import { existsSync } from 'fs-extra';
|
import { existsSync } from 'fs-extra';
|
||||||
import { getDeps, clearDepsCache, fillExt } from './get-deps';
|
import { getDeps, clearDepsCache, fillExt } from './get-deps';
|
||||||
@ -6,10 +6,9 @@ import { getComponents, smartOutputFile } from '../common';
|
|||||||
import { SRC_DIR, STYPE_DEPS_JSON_FILE } from '../common/constant';
|
import { SRC_DIR, STYPE_DEPS_JSON_FILE } from '../common/constant';
|
||||||
|
|
||||||
function matchPath(path: string, component: string): boolean {
|
function matchPath(path: string, component: string): boolean {
|
||||||
return path
|
const p = relative(SRC_DIR, path);
|
||||||
.replace(SRC_DIR, '')
|
const arr = p.split(sep);
|
||||||
.split('/')
|
return arr.includes(component);
|
||||||
.includes(component);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getStylePath(component: string) {
|
function getStylePath(component: string) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user