UNPKG

@piscium2010/v-form

Version:

This is not a form, instead it is only a form shell of which the single responsibility is validating and providing error messages. Capable of definding flexiable rules and validating multi fields at a time.

14 lines (11 loc) 262 B
const { series } = require('gulp') const { src, dest } = require('gulp') const babel = require('gulp-babel') function build(cb) { src('src/**/*.js') .pipe(babel()) .pipe(dest('dist')) cb(); } exports.build = build; exports.default = series(build);