Skip to content

Instantly share code, notes, and snippets.

@secelite
secelite / transfer-only-added-changed-files-with-gulp-gulp-sftp.js
Created March 17, 2017 09:17
Transfer only added & changed files with `gulp` & `gulp-sftp`
gulp.task("watch-upload", function() {
gulp.watch("src/**/*", function(obj) {
if(["changed", "added"].indexOf(obj.type) !== -1) {
gulp.src(obj.path, {"base": "src/"})
.pipe(sftp(config.sftp));
}
});
});
@secelite
secelite / typolinks-in-html-with-fluid-styled-content.md
Created August 22, 2016 13:47
TYPO3 TypoLinks <link> in HTML elements with fluid_styled_content