UNPKG

jargon

Version:

ES6 component for string inflection/case/format/pluralization. Highly tested. Supports chaining.

11 lines (8 loc) 233 B
import gulp from "gulp"; import babel from "gulp-babel"; import paths from "../paths.json"; gulp.task("build-spec", () => { return gulp.src(paths.source.spec) .pipe(babel()) .pipe(gulp.dest(paths.build.directories.spec)); });