fix: incorrect tag name in WebStorm (#10946)

This commit is contained in:
neverland 2022-08-21 10:03:05 +08:00 committed by GitHub
parent b4072ef2bd
commit 72d515b30e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View File

@ -12,7 +12,7 @@ import { compileBundles } from '../compiler/compile-bundles.js';
import { genPackageEntry } from '../compiler/gen-package-entry.js';
import { genStyleDepsMap } from '../compiler/gen-style-deps-map.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 { genWebStormTypes } from '../compiler/web-types/index.js';
import {
@ -135,9 +135,10 @@ async function buildPackageStyleEntry() {
}
async function buildBundledOutputs() {
const config = getVantConfig();
setModuleEnv('esmodule');
await compileBundles();
genWebStormTypes();
genWebStormTypes(config.build?.tagPrefix);
}
const tasks = [

View File

@ -40,7 +40,7 @@ export async function parseAndWrite(options: Options) {
);
}
export function genWebStormTypes() {
export function genWebStormTypes(tagPrefix?: string) {
const pkgJson = getPackageJson();
const vantConfig = getVantConfig();
@ -50,5 +50,6 @@ export function genWebStormTypes() {
test: /README\.md/,
version: pkgJson.version,
outputDir: LIB_DIR,
tagPrefix,
});
}

View File

@ -2,6 +2,7 @@ export default {
name: 'vant',
build: {
srcDir: 'src',
tagPrefix: 'van-',
namedExport: true,
skipInstall: ['lazyload'],
packageManager: 'pnpm',