A simple [aemsync](https://github.com/gavoja/aemsync) wrapper for Gulp. It will automatically upload piped files to CRX.
npm install gulp-aemsync
npm install gulp-aemsync
`$3
`javascript
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']
}));
});
``