fix: update vetur dir (#2261)

This commit is contained in:
张帅
2018-12-11 09:31:55 +08:00
committed by neverland
parent abee937da9
commit cac7e0beff
4 changed files with 11 additions and 9 deletions

View File

@@ -10,7 +10,7 @@ const markdownVetur = require('markdown-vetur');
const esDir = path.join(__dirname, '../es');
const libDir = path.join(__dirname, '../lib');
const srcDir = path.join(__dirname, '../packages');
const distDir = path.join(__dirname, '../dist');
const veturDir = path.join(__dirname, '../vetur');
const compilerOption = {
babel: {
configFile: path.join(__dirname, '../babel.config.js')
@@ -76,5 +76,5 @@ markdownVetur.parseAndWrite({
path: srcDir,
test: /zh-CN\.md/,
tagPrefix: 'van-',
outputDir: distDir
outputDir: veturDir
});