Skip to content
This repository has been archived by the owner on Jan 27, 2024. It is now read-only.

Latest commit

 

History

History
26 lines (19 loc) · 540 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 540 Bytes

gulp-couchapp

Gulp plugin for uploading a couchapp to couchdb

⚠️ This project is deprecated and not maintained any more ⚠️

Usage

As long as gulp-couchapp is not published, clone and link it:

git clone https://github.com/hamstercommunity/gulp-couchapp.git
cd my-project
npm link ../gulp-couchapp/

Then, add it to your gulpfile.js:

var couchapp = require('gulp-couchapp');

gulp.task('default', function(cb) {
  gulp.src(['./**'])
    .pipe(couchapp())
    .pipe(gulp.dest('build'));
});