mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +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 { 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 = [
|
||||
|
@ -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,
|
||||
});
|
||||
}
|
||||
|
@ -2,6 +2,7 @@ export default {
|
||||
name: 'vant',
|
||||
build: {
|
||||
srcDir: 'src',
|
||||
tagPrefix: 'van-',
|
||||
namedExport: true,
|
||||
skipInstall: ['lazyload'],
|
||||
packageManager: 'pnpm',
|
||||
|
Loading…
x
Reference in New Issue
Block a user