You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP

gulp-transform-indent

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-transform-indent

Gulp plugin for indent any file

0.3.2
latest
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created

Gulp plugin for indent any file

const gulp = require('gulp')

gulp.task('indent', () => {
    const indent = require('gulp-transform-indent')

    return gulp
    .src('app/**/*')
    .pipe(indent({
        spacesBefore: 2,
        spacesAfter: 4
    }))
    .pipe(gulp.dest('app'))
})

Keywords

FAQs

Package last updated on 29 May 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts