Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.
/ wulp Public archive

Gulp tasks that can be run directly or as part of a watch task.

License

Notifications You must be signed in to change notification settings

convoyinc/wulp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wulp NPM version

Wulp allows you to define Gulp tasks that can be run directly, and also via a watch task.

Registering Wulp

Wulp tasks don't do anything on their own; you must first register them with gulp via wulp.register:

// Registers all wulp tasks as gulp tasks, and creates a task called `watch`
// that watches for changes.
wulp.register(gulp, 'watch');

Defining a Task

var eslint = require('gulp-eslint');
var gulp = require('gulp');
var wulp = require('wulp');

// A wulp task is defined similarly to regular gulp tasks, except it is _given_
// the files it should execute over.
//
// When being run directly, this is whatever files match the glob.  When being
// run via the watch task, it is whatever matching files have changed.
wulp.task('test:style', ['{src,test}/**/*.js'], (srcs) => {
  return srcs
    .pipe(eslint())
    .pipe(eslint.format())
    .pipe(eslint.failAfterError());
});

Advanced Options

Wulp tasks support additional configuration via a third argument:

wulp.task('test:style', ['{src,test}/**/*.js'], {runAll: ['.eslintrc*']}, (srcs) => {

The supported options are:

runAll: Accepts an array of glob expressions. When a file matching that expression changes, the task will be run with all files matching the primary glob. Great for re-running all tests after changing test configuration, for example.

License

This project is covered under the Apache License, version 2.0.

About

Gulp tasks that can be run directly or as part of a watch task.

Resources

License

Stars

Watchers

Forks

Packages

No packages published