'How can i make a list of all revisions in e.g. version json file? (gulp-rev-all)

I want to make a backup of every change.
Which works perfektly.
But i need to keep track of all revisions in a file.
I tried .versionFile() but this overwrites the file with the result only containing the last revision.
Another try was to use .dest() with overwrite false.

How can i track all revision in a file e.g json file maybe with .versionFile function?

    .pipe(rev.revision())
    .pipe(gulp.dest(config.css.revision))
    .pipe(rev.manifestFile())
    .pipe(gulp.dest(config.css.revision))
    .pipe(rev.versionFile())
    .pipe(gulp.dest(config.css.revision, { overwrite: false }))


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source