Skip to content

Latest commit

 

History

History
executable file
·
37 lines (26 loc) · 658 Bytes

README.zh-CN.md

File metadata and controls

executable file
·
37 lines (26 loc) · 658 Bytes

@omni-door/gulp-plugin-vue-sfc

English | 简体中文

快速开始

安装

yarn add -D @omni-door/gulp-plugin-vue-sfc

使用

gulpfile.js 中:

import { src, dest } from 'gulp';
import VueSFCPlugin from '@omni-door/gulp-plugin-vue-sfc';

function compileVueSFC() {
  return src('./src/**/*.vue')
    .pipe(VueSFCPlugin())
    .pipe(dest('./dist'))
}

开发

对于调试或维护,可以将项目 clone 到本地,然后启动项目:

git clone --depth 1 git@github.com:omni-door/gulp-plugin-vue-sfc.git

cd gulp-plugin-vue-sfc

yarn && yarn dev

更多详情