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
3 changed files with 6 additions and 3 deletions
@@ -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,
});
}