npm.io
1.0.0 • Published 3 years ago

gulp-tgs

Licence
MIT
Version
1.0.0
Deps
2
Size
3 kB
Vulns
0
Weekly
0

gulp-tgs

Uncompress tgs files in your gulp build pipeline

Install

$ npm install --save-dev gulp-tgs

Usage

const gulp = require('gulp')
const gunzip = require('gulp-gunzip')
const rename = require('gulp-rename')

gulp.task("lottie", function () {
    return gulp.src("./tgs/*.tgs")
        .pipe(gunzip())
        .pipe(rename(function (path) {
            path.extname = ".json";
        }))
        .pipe(gulp.dest("./lottie"));
});

License

MIT

Keywords