Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
/ core-gulp-tasks Public archive

⛔️ DEPRECATED Gulp tasks that we usually need

License

Notifications You must be signed in to change notification settings

cloudfour/core-gulp-tasks

Repository files navigation

⛔️ DEPRECATED

This project has been deprecated, because we no longer use it, and for similar reasons as gulp-util. You are welcome to fork the project, but for security reasons we are not looking for a new owner or maintainer.

Core Gulp Tasks

NPM version No Maintenance Intended

Note: Requires node >=4.0.0

Usage

npm install --save-dev @cloudfour/gulp-tasks
/* gulpfile.js */

var gulp = require('gulp');
var tasks = require('core-gulp-tasks');

/**
 * Register the tasks you need to use.
 */

tasks.css(gulp, {
  // Task options
});

tasks.js(gulp, {
  // Task options
});

gulp.task('default', ['css', 'js']);
gulp --tasks

Tasks for gulpfile.js
├── css
├── js
└── default