mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix: incorrect tag name in WebStorm (#10946)
This commit is contained in:
parent
b4072ef2bd
commit
72d515b30e
@ -12,7 +12,7 @@ import { compileBundles } from '../compiler/compile-bundles.js';
|
|||||||
import { genPackageEntry } from '../compiler/gen-package-entry.js';
|
import { genPackageEntry } from '../compiler/gen-package-entry.js';
|
||||||
import { genStyleDepsMap } from '../compiler/gen-style-deps-map.js';
|
import { genStyleDepsMap } from '../compiler/gen-style-deps-map.js';
|
||||||
import { genComponentStyle } from '../compiler/gen-component-style.js';
|
import { genComponentStyle } from '../compiler/gen-component-style.js';
|
||||||
import { SRC_DIR, LIB_DIR, ES_DIR } from '../common/constant.js';
|
import { SRC_DIR, LIB_DIR, ES_DIR, getVantConfig } from '../common/constant.js';
|
||||||
import { genPackageStyle } from '../compiler/gen-package-style.js';
|
import { genPackageStyle } from '../compiler/gen-package-style.js';
|
||||||
import { genWebStormTypes } from '../compiler/web-types/index.js';
|
import { genWebStormTypes } from '../compiler/web-types/index.js';
|
||||||
import {
|
import {
|
||||||
@ -135,9 +135,10 @@ async function buildPackageStyleEntry() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function buildBundledOutputs() {
|
async function buildBundledOutputs() {
|
||||||
|
const config = getVantConfig();
|
||||||
setModuleEnv('esmodule');
|
setModuleEnv('esmodule');
|
||||||
await compileBundles();
|
await compileBundles();
|
||||||
genWebStormTypes();
|
genWebStormTypes(config.build?.tagPrefix);
|
||||||
}
|
}
|
||||||
|
|
||||||
const tasks = [
|
const tasks = [
|
||||||
|
@ -40,7 +40,7 @@ export async function parseAndWrite(options: Options) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function genWebStormTypes() {
|
export function genWebStormTypes(tagPrefix?: string) {
|
||||||
const pkgJson = getPackageJson();
|
const pkgJson = getPackageJson();
|
||||||
const vantConfig = getVantConfig();
|
const vantConfig = getVantConfig();
|
||||||
|
|
||||||
@ -50,5 +50,6 @@ export function genWebStormTypes() {
|
|||||||
test: /README\.md/,
|
test: /README\.md/,
|
||||||
version: pkgJson.version,
|
version: pkgJson.version,
|
||||||
outputDir: LIB_DIR,
|
outputDir: LIB_DIR,
|
||||||
|
tagPrefix,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ export default {
|
|||||||
name: 'vant',
|
name: 'vant',
|
||||||
build: {
|
build: {
|
||||||
srcDir: 'src',
|
srcDir: 'src',
|
||||||
|
tagPrefix: 'van-',
|
||||||
namedExport: true,
|
namedExport: true,
|
||||||
skipInstall: ['lazyload'],
|
skipInstall: ['lazyload'],
|
||||||
packageManager: 'pnpm',
|
packageManager: 'pnpm',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user