diff --git a/README.MD b/README.MD index decb11a..31ba350 100644 --- a/README.MD +++ b/README.MD @@ -15,11 +15,11 @@ Then, add it to your gulpfile.js: var gap = require('gulp-append-prepend'); gulp.task('myawesometask', function(){ - gulp.src('index.html') - .pipe(gap.appendFile('header.html')) - .pipe(gap.appendText('')) - .pipe(gap.prependText('')) - .pipe(gap.prependFile('footer.html')) + gulp.src('index.html') + .pipe(gap.prependFile('header.html')) + .pipe(gap.prependText('')) + .pipe(gap.appendText('')) + .pipe(gap.appendFile('footer.html')) .pipe(gulp.dest('www/')); }); ``` diff --git a/package.json b/package.json index fc4044d..1909e9d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gulp-append-prepend", - "version": "1.0.1", + "version": "1.0.2", "description": "A simple gulp plugin to append and prepend files.", "main": "index.js", "keywords": [