10 years later #1

Merged
sthag merged 374 commits from development into main 2026-03-07 00:18:59 +01:00
Showing only changes of commit 0fa1b3c4b4 - Show all commits

View file

@ -98,7 +98,7 @@ function json() {
return src(input.data)
.pipe(plumber())
.pipe(jsonConcat(hippie.jsonFile +'.json', function(data) {
return new Buffer(JSON.stringify(data));
return new Buffer.from(JSON.stringify(data));
}))
.pipe(dest(output.data));
}