From 8fc7e6e611bcfdc31ad493eee2ba1a374e64ad47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=98=89=E6=B6=B5?= Date: Fri, 13 Dec 2019 09:50:29 +0800 Subject: [PATCH] feat(cli): gen vetur config --- packages/vant-cli/src/commands/build.ts | 10 ++++++---- .../vant-cli/src/compiler/gen-vetur-config.ts | 20 +++++++++++++++++++ vant.config.js | 3 +++ 3 files changed, 29 insertions(+), 4 deletions(-) create mode 100644 packages/vant-cli/src/compiler/gen-vetur-config.ts diff --git a/packages/vant-cli/src/commands/build.ts b/packages/vant-cli/src/commands/build.ts index 0c89e790f..f346820a2 100644 --- a/packages/vant-cli/src/commands/build.ts +++ b/packages/vant-cli/src/commands/build.ts @@ -1,6 +1,8 @@ import { join, relative } from 'path'; -import { clean } from './clean'; import { remove, copy, readdirSync } from 'fs-extra'; +import { clean } from './clean'; +import { CSS_LANG } from '../common/css'; +import { getStepper } from '../common/logger'; import { compileJs } from '../compiler/compile-js'; import { compileSfc } from '../compiler/compile-sfc'; import { compileStyle } from '../compiler/compile-style'; @@ -9,7 +11,8 @@ import { genPackageEntry } from '../compiler/gen-package-entry'; import { genStyleDepsMap } from '../compiler/gen-style-deps-map'; import { genComponentStyle } from '../compiler/gen-component-style'; import { SRC_DIR, LIB_DIR, ES_DIR } from '../common/constant'; -import { getStepper } from '../common/logger'; +import { genPacakgeStyle } from '../compiler/gen-package-style'; +import { genVeturConfig } from '../compiler/gen-vetur-config'; import { isDir, isSfc, @@ -20,8 +23,6 @@ import { setNodeEnv, setModuleEnv } from '../common'; -import { genPacakgeStyle } from '../compiler/gen-package-style'; -import { CSS_LANG } from '../common/css'; const stepper = getStepper(10); @@ -102,6 +103,7 @@ async function buildPackedOutputs() { setModuleEnv('esmodule'); await compilePackage(false); await compilePackage(true); + genVeturConfig(); stepper.success('Build Packed Outputs'); } catch (err) { stepper.error('Build Packed Outputs', err); diff --git a/packages/vant-cli/src/compiler/gen-vetur-config.ts b/packages/vant-cli/src/compiler/gen-vetur-config.ts new file mode 100644 index 000000000..6b5d0e17d --- /dev/null +++ b/packages/vant-cli/src/compiler/gen-vetur-config.ts @@ -0,0 +1,20 @@ +// @ts-ignore +import markdownVetur from '@vant/markdown-vetur'; +import { join } from 'path'; +import { get } from 'lodash'; +import { SRC_DIR, getVantConfig, ROOT } from '../common/constant'; + +// generate vetur tags & attributes +export function genVeturConfig() { + const vantCongig = getVantConfig(); + const options = get(vantCongig, 'build.vetur'); + + if (options) { + markdownVetur.parseAndWrite({ + path: SRC_DIR, + test: /zh-CN\.md/, + outputDir: join(ROOT, 'vetur'), + ...options + }); + } +} diff --git a/vant.config.js b/vant.config.js index 171f2f7c1..1c3749c5e 100644 --- a/vant.config.js +++ b/vant.config.js @@ -4,6 +4,9 @@ module.exports = { skipInstall: ['lazyload'], site: { publicPath: 'vant/' + }, + vetur: { + tagPrefix: 'van-' } }, site: {