turbo-gulp
Version:
Gulp tasks to boost high-quality projects.
12 lines (11 loc) • 487 B
TypeScript
/// <reference types="gulp" />
import { Gulp } from "gulp";
import { Project } from "../project";
import * as bumpMajor from "./bump-major";
import * as bumpMinor from "./bump-minor";
import * as bumpPatch from "./bump-patch";
import * as lint from "./lint";
import * as lintFix from "./lint-fix";
import * as tslintJson from "./tslint-json";
export declare function registerAll(gulp: Gulp, project: Project): void;
export { bumpMajor, bumpMinor, bumpPatch, lint, lintFix, tslintJson };