1.0.0-beta.2 • Published 4 years ago

@njmaeff/node-gulpfile v1.0.0-beta.2

Weekly downloads
21
License
MIT
Repository
github
Last release
4 years ago

Conventional Commits

@njmaeff/node-gulpfile

Motivation

Make babel typescript projects using gulp.

Usage

Create a root gulpfile in the target project and use this module as follows.

Use the defaults in your gulpfile

export * from "@njmaeff/node-gulpfile/defaults"

export a single default task

export {clean} from "@njmaeff/node-gulpfile/defaults"

extend the default compiler with additional files

import {compiler} from "@njmaeff/node-gulpfile"

export function compile(){
    return compiler(src => [...src, file.ts])
}