1.0.1 • Published 7 years ago

gulp-aemsync v1.0.1

Weekly downloads
423
License
MIT
Repository
github
Last release
7 years ago

Gulp AEM Sync

Description

A simple aemsync wrapper for Gulp. It will automatically upload piped files to CRX.

Installation

npm install gulp-aemsync

Usage

const gulp = require('gulp');
const aemSync = require('gulp-aemsync');
 
gulp.task('aemsync', function() {
    return gulp.src('sampleContent/jcr_root/**/clientlib/css/*.css')
        .pipe(aemSync({
            targets: ['http://admin:admin@localhost:4502']
        }));
});