From 1ef7595728c916f59b338e1ce131a41b8849e726 Mon Sep 17 00:00:00 2001 From: Cole Gentry Date: Sun, 28 Jan 2018 22:00:13 -0500 Subject: [PATCH] Adds front-matter to all of the docs files --- docs/API.md | 5 +++++ docs/CLI.md | 7 ++++++- docs/FAQ.md | 5 +++++ docs/getting-started.md | 5 +++++ docs/recipes/automate-release-workflow.md | 5 +++++ .../browserify-multiple-destination.md | 5 +++++ docs/recipes/browserify-transforms.md | 5 +++++ docs/recipes/browserify-uglify-sourcemap.md | 7 ++++++- docs/recipes/browserify-with-globs.md | 5 +++++ .../combining-streams-to-handle-errors.md | 5 +++++ docs/recipes/cron-task.md | 7 ++++++- docs/recipes/delete-files-folder.md | 4 ++++ docs/recipes/exports-as-tasks.md | 5 +++++ .../fast-browserify-builds-with-watchify.md | 7 ++++++- .../handling-the-delete-event-on-watch.md | 5 +++++ .../incremental-builds-with-concatenate.md | 5 +++++ ...tain-directory-structure-while-globbing.md | 20 +++++++++++-------- docs/recipes/make-stream-from-buffer.md | 13 ++++++++---- docs/recipes/minified-and-non-minified.md | 5 +++++ .../minimal-browsersync-setup-with-gulp4.md | 5 +++++ docs/recipes/mocha-test-runner-with-gulp.md | 5 +++++ .../only-pass-through-changed-files.md | 5 +++++ docs/recipes/pass-arguments-from-cli.md | 5 +++++ .../recipes/rebuild-only-files-that-change.md | 5 +++++ docs/recipes/rollup-with-rollup-stream.md | 5 +++++ docs/recipes/run-grunt-tasks-from-gulp.md | 7 ++++++- docs/recipes/running-shell-commands.md | 5 +++++ docs/recipes/running-task-steps-per-folder.md | 9 +++++++-- docs/recipes/running-tasks-in-series.md | 5 +++++ ...erver-with-livereload-and-css-injection.md | 5 +++++ .../sharing-streams-with-stream-factories.md | 5 +++++ docs/recipes/specifying-a-cwd.md | 5 +++++ .../split-tasks-across-multiple-files.md | 5 +++++ ...plating-with-swig-and-yaml-front-matter.md | 5 +++++ docs/recipes/using-external-config-file.md | 5 +++++ .../using-multiple-sources-in-one-task.md | 5 +++++ docs/why-use-pump/README.md | 5 +++++ docs/writing-a-plugin/dealing-with-streams.md | 6 +++++- docs/writing-a-plugin/guidelines.md | 5 +++++ docs/writing-a-plugin/recommended-modules.md | 5 +++++ docs/writing-a-plugin/testing.md | 5 +++++ docs/writing-a-plugin/using-buffers.md | 5 +++++ 42 files changed, 227 insertions(+), 20 deletions(-) diff --git a/docs/API.md b/docs/API.md index 1415c6af2..d5b1cf3cf 100644 --- a/docs/API.md +++ b/docs/API.md @@ -1,3 +1,8 @@ + + ## gulp API docs * [gulp.src](#gulpsrcglobs-options) - Emit files matching one or more globs diff --git a/docs/CLI.md b/docs/CLI.md index c4af45f76..50fb9ccae 100644 --- a/docs/CLI.md +++ b/docs/CLI.md @@ -1,3 +1,8 @@ + + ## gulp CLI docs ### Flags @@ -105,7 +110,7 @@ Output: Command: `gulp --tasks-simple` -Output: +Output: ```shell one two diff --git a/docs/FAQ.md b/docs/FAQ.md index f8a649ead..795b3b620 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -1,3 +1,8 @@ + + # FAQ ## Why gulp? Why not ____? diff --git a/docs/getting-started.md b/docs/getting-started.md index d5240cd1c..797a5fe01 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -1,3 +1,8 @@ + + # Getting Started *If you've previously installed gulp globally, run `npm rm --global gulp` before following these instructions.* For more information, read this [Sip](https://medium.com/gulpjs/gulp-sips-command-line-interface-e53411d4467). diff --git a/docs/recipes/automate-release-workflow.md b/docs/recipes/automate-release-workflow.md index 0f18006a9..950c47ac7 100644 --- a/docs/recipes/automate-release-workflow.md +++ b/docs/recipes/automate-release-workflow.md @@ -1,3 +1,8 @@ + + # Automate release workflow If your project follows a semantic versioning, it may be a good idea to automatize the steps needed to do a release. diff --git a/docs/recipes/browserify-multiple-destination.md b/docs/recipes/browserify-multiple-destination.md index 474f58286..ef045edce 100644 --- a/docs/recipes/browserify-multiple-destination.md +++ b/docs/recipes/browserify-multiple-destination.md @@ -1,3 +1,8 @@ + + # Browserify + Globs (multiple destination) This example shows how to set up a task of bundling multiple entry points into multiple destinations using browserify. diff --git a/docs/recipes/browserify-transforms.md b/docs/recipes/browserify-transforms.md index 47a0d4d54..cec6dc995 100644 --- a/docs/recipes/browserify-transforms.md +++ b/docs/recipes/browserify-transforms.md @@ -1,3 +1,8 @@ + + # Browserify + Transforms [Browserify](https://github.com/browserify/browserify) has become an important and indispensable diff --git a/docs/recipes/browserify-uglify-sourcemap.md b/docs/recipes/browserify-uglify-sourcemap.md index cccfec098..c57001f90 100644 --- a/docs/recipes/browserify-uglify-sourcemap.md +++ b/docs/recipes/browserify-uglify-sourcemap.md @@ -1,10 +1,15 @@ + + # Browserify + Uglify2 with sourcemaps [Browserify](https://github.com/browserify/browserify) has become an important and indispensable tool but requires being wrapped before working well with gulp. Below is a simple recipe for using Browserify with full sourcemaps that resolve to the original individual files. -See also: the [Combining Streams to Handle Errors](https://github.com/gulpjs/gulp/blob/master/docs/recipes/combining-streams-to-handle-errors.md) recipe for handling errors with browserify or uglify in your stream. +See also: the [Combining Streams to Handle Errors](https://github.com/gulpjs/gulp/blob/master/docs/recipes/combining-streams-to-handle-errors.md) recipe for handling errors with browserify or uglify in your stream. A simple `gulpfile.js` file for Browserify + Uglify2 with sourcemaps: diff --git a/docs/recipes/browserify-with-globs.md b/docs/recipes/browserify-with-globs.md index 72695fb6d..fadf9c6ea 100644 --- a/docs/recipes/browserify-with-globs.md +++ b/docs/recipes/browserify-with-globs.md @@ -1,3 +1,8 @@ + + # Browserify + Globs [Browserify + Uglify2](https://github.com/gulpjs/gulp/blob/master/docs/recipes/browserify-uglify-sourcemap.md) shows how to setup a basic gulp task to bundle a JavaScript file with its dependencies, and minify the bundle with UglifyJS while preserving source maps. diff --git a/docs/recipes/combining-streams-to-handle-errors.md b/docs/recipes/combining-streams-to-handle-errors.md index 7c38654af..5e03a9124 100644 --- a/docs/recipes/combining-streams-to-handle-errors.md +++ b/docs/recipes/combining-streams-to-handle-errors.md @@ -1,3 +1,8 @@ + + # Combining streams to handle errors By default, emitting an error on a stream will cause it to be thrown unless it already has a listener attached to the `error` event. This gets a bit tricky when you're working with longer pipelines of streams. diff --git a/docs/recipes/cron-task.md b/docs/recipes/cron-task.md index 030fb334a..1c42f8f28 100644 --- a/docs/recipes/cron-task.md +++ b/docs/recipes/cron-task.md @@ -1,9 +1,14 @@ + + # Run gulp task via cron job While logged in via a user that has privileges to run `gulp`, run the following: crontab -e - + to edit your current "[crontab](https://en.wikipedia.org/wiki/Cron)" file. Typically, within a cron job, you want to run any binary using absolute paths, diff --git a/docs/recipes/delete-files-folder.md b/docs/recipes/delete-files-folder.md index 5f7cc1afd..bb61b0ad5 100644 --- a/docs/recipes/delete-files-folder.md +++ b/docs/recipes/delete-files-folder.md @@ -1,3 +1,7 @@ + # Delete files and folders diff --git a/docs/recipes/exports-as-tasks.md b/docs/recipes/exports-as-tasks.md index 2eaea4905..32eb80851 100644 --- a/docs/recipes/exports-as-tasks.md +++ b/docs/recipes/exports-as-tasks.md @@ -1,3 +1,8 @@ + + # Exports as Tasks Using the ES2015 module syntax you can use your exports as tasks. diff --git a/docs/recipes/fast-browserify-builds-with-watchify.md b/docs/recipes/fast-browserify-builds-with-watchify.md index b56469589..2233b8ba1 100644 --- a/docs/recipes/fast-browserify-builds-with-watchify.md +++ b/docs/recipes/fast-browserify-builds-with-watchify.md @@ -1,3 +1,8 @@ + + # Fast browserify builds with watchify As a [browserify](https://github.com/browserify/browserify) project begins to expand, the time to bundle it slowly gets longer and longer. While it might start at 1 second, it's possible to be waiting 30 seconds for your project to build on particularly large projects. @@ -24,7 +29,7 @@ var customOpts = { debug: true }; var opts = assign({}, watchify.args, customOpts); -var b = watchify(browserify(opts)); +var b = watchify(browserify(opts)); // add transformations here // i.e. b.transform(coffeeify); diff --git a/docs/recipes/handling-the-delete-event-on-watch.md b/docs/recipes/handling-the-delete-event-on-watch.md index 05bd683a1..bbfcb2dbf 100644 --- a/docs/recipes/handling-the-delete-event-on-watch.md +++ b/docs/recipes/handling-the-delete-event-on-watch.md @@ -1,3 +1,8 @@ + + # Handling the Delete Event on Watch You can listen for `'unlink'` events to fire on the watcher returned from `gulp.watch`. diff --git a/docs/recipes/incremental-builds-with-concatenate.md b/docs/recipes/incremental-builds-with-concatenate.md index c9fdaa0de..b9e0fc519 100644 --- a/docs/recipes/incremental-builds-with-concatenate.md +++ b/docs/recipes/incremental-builds-with-concatenate.md @@ -1,3 +1,8 @@ + + # Incremental rebuilding, including operating on full file sets The trouble with incremental rebuilds is you often want to operate on _all_ processed files, not just single files. For example, you may want to lint and module-wrap just the file(s) that have changed, then concatenate it with all other linted and module-wrapped files. This is difficult without the use of temp files. diff --git a/docs/recipes/maintain-directory-structure-while-globbing.md b/docs/recipes/maintain-directory-structure-while-globbing.md index aadd32ef4..b0fc559cf 100644 --- a/docs/recipes/maintain-directory-structure-while-globbing.md +++ b/docs/recipes/maintain-directory-structure-while-globbing.md @@ -1,9 +1,14 @@ + + # Maintain Directory Structure while Globbing If you are planning to read a few files/folders from a directory and maintain their relative path, you need to pass `{base: '.'}` as the second argument to `gulp.src()`. -For example, if you have a directory structure like +For example, if you have a directory structure like ![Dev setup](https://cloud.githubusercontent.com/assets/2562992/3178498/bedf75b4-ec1a-11e3-8a71-a150ad94b450.png) @@ -27,18 +32,17 @@ If you want to maintain the structure, you need to pass `{base: '.'}` to `gulp.s ```js gulp.task('task', function () { - return gulp.src(['index.html', - 'css/**', - 'js/**', - 'lib/**', - 'images/**', + return gulp.src(['index.html', + 'css/**', + 'js/**', + 'lib/**', + 'images/**', 'plugin/**' ], {base: '.'}) .pipe(operation1()) .pipe(operation2()); }); ``` -And the input to your `operation1()` will be a folder structure like +And the input to your `operation1()` will be a folder structure like ![with-base](https://cloud.githubusercontent.com/assets/2562992/3178607/053d6722-ec1c-11e3-9ba8-7ce39e1a480e.png) - diff --git a/docs/recipes/make-stream-from-buffer.md b/docs/recipes/make-stream-from-buffer.md index f11c11612..a372b6681 100644 --- a/docs/recipes/make-stream-from-buffer.md +++ b/docs/recipes/make-stream-from-buffer.md @@ -1,3 +1,8 @@ + + # Make stream from buffer (memory contents) Sometimes you may need to start a stream with files that their contents are in a variable and not in a physical file. In other words, how to start a 'gulp' stream without using `gulp.src()`. @@ -78,9 +83,9 @@ gulp.task('write-versions', function() { availableVersions.forEach(function(v) { // make a new stream with fake file name var stream = source('final.' + v); - + var streamEnd = stream; - + // we load the data from the concatenated libs var fileContents = memory['libs.concat.js'] + // we add the version's data @@ -99,11 +104,11 @@ gulp.task('write-versions', function() { .pipe(vinylBuffer()) //.pipe(tap(function(file) { /* do something with the file contents here */ })) .pipe(gulp.dest('output')); - + // add the end of the stream, otherwise the task would finish before all the processing // is done streams.push(streamEnd); - + }); return es.merge.apply(this, streams); diff --git a/docs/recipes/minified-and-non-minified.md b/docs/recipes/minified-and-non-minified.md index e1a6a4296..955f7a2c0 100644 --- a/docs/recipes/minified-and-non-minified.md +++ b/docs/recipes/minified-and-non-minified.md @@ -1,3 +1,8 @@ + + # Output both a minified and non-minified version Outputting both a minified and non-minified version of your combined JavaScript files can be achieved by using `gulp-rename` and piping to `dest` twice (once before minifying and once after minifying): diff --git a/docs/recipes/minimal-browsersync-setup-with-gulp4.md b/docs/recipes/minimal-browsersync-setup-with-gulp4.md index ec22c0717..52288e1e5 100644 --- a/docs/recipes/minimal-browsersync-setup-with-gulp4.md +++ b/docs/recipes/minimal-browsersync-setup-with-gulp4.md @@ -1,3 +1,8 @@ + + # Minimal BrowserSync setup with Gulp 4 [BrowserSync](https://www.browsersync.io/) is a great tool to streamline diff --git a/docs/recipes/mocha-test-runner-with-gulp.md b/docs/recipes/mocha-test-runner-with-gulp.md index c6ca3873f..879eaa879 100644 --- a/docs/recipes/mocha-test-runner-with-gulp.md +++ b/docs/recipes/mocha-test-runner-with-gulp.md @@ -1,3 +1,8 @@ + + # Mocha test-runner with gulp ### Passing shared module in all tests diff --git a/docs/recipes/only-pass-through-changed-files.md b/docs/recipes/only-pass-through-changed-files.md index 1b0a34496..96ba866c9 100644 --- a/docs/recipes/only-pass-through-changed-files.md +++ b/docs/recipes/only-pass-through-changed-files.md @@ -1,3 +1,8 @@ + + # Only pass through changed files Files are passed through the whole pipe chain on every run by default. By using [gulp-changed](https://github.com/sindresorhus/gulp-changed) only changed files will be passed through. This can speed up consecutive runs considerably. diff --git a/docs/recipes/pass-arguments-from-cli.md b/docs/recipes/pass-arguments-from-cli.md index 1f9c74b14..69f989864 100644 --- a/docs/recipes/pass-arguments-from-cli.md +++ b/docs/recipes/pass-arguments-from-cli.md @@ -1,3 +1,8 @@ + + # Pass arguments from the command line ```js diff --git a/docs/recipes/rebuild-only-files-that-change.md b/docs/recipes/rebuild-only-files-that-change.md index 245ddc4fb..48ee6bc12 100644 --- a/docs/recipes/rebuild-only-files-that-change.md +++ b/docs/recipes/rebuild-only-files-that-change.md @@ -1,3 +1,8 @@ + + # Rebuild only files that change With [`gulp-watch`](https://github.com/floatdrop/gulp-watch): diff --git a/docs/recipes/rollup-with-rollup-stream.md b/docs/recipes/rollup-with-rollup-stream.md index 24679d557..e5874849a 100644 --- a/docs/recipes/rollup-with-rollup-stream.md +++ b/docs/recipes/rollup-with-rollup-stream.md @@ -1,3 +1,8 @@ + + # Rollup with rollup-stream Like Browserify, [Rollup](https://rollupjs.org/) is a bundler and thus only fits naturally into gulp if it's at the start of the pipeline. Unlike Browserify, Rollup doesn't natively produce a stream as output and needs to be wrapped before it can take this position. [rollup-stream](https://github.com/Permutatrix/rollup-stream) does this for you, producing output just like that of Browserify's `bundle()` method—as a result, most of the Browserify recipes here will also work with rollup-stream. diff --git a/docs/recipes/run-grunt-tasks-from-gulp.md b/docs/recipes/run-grunt-tasks-from-gulp.md index ddf137d66..4d06cf2b6 100644 --- a/docs/recipes/run-grunt-tasks-from-gulp.md +++ b/docs/recipes/run-grunt-tasks-from-gulp.md @@ -1,3 +1,8 @@ + + # Run Grunt Tasks from Gulp It is possible to run Grunt tasks / Grunt plugins from within Gulp. This can be useful during a gradual migration from Grunt to Gulp or if there's a specific plugin that you need. With the described approach no Grunt CLI and no Gruntfile is required. @@ -32,7 +37,7 @@ gulp.task('copy', function (done) { ``` -Now start the task with: +Now start the task with: `gulp copy` With the aforementioned approach the grunt tasks get registered within gulp's task system. **Keep in mind grunt tasks are usually blocking (unlike gulp), therefore no other task (not even a gulp task) can run until a grunt task is completed.** diff --git a/docs/recipes/running-shell-commands.md b/docs/recipes/running-shell-commands.md index 5d3447476..c85900ed8 100644 --- a/docs/recipes/running-shell-commands.md +++ b/docs/recipes/running-shell-commands.md @@ -1,3 +1,8 @@ + + # Running Shell Commands Sometimes it is helpful to be able to call existing command line tools from gulp. diff --git a/docs/recipes/running-task-steps-per-folder.md b/docs/recipes/running-task-steps-per-folder.md index 905f697b9..889557818 100644 --- a/docs/recipes/running-task-steps-per-folder.md +++ b/docs/recipes/running-task-steps-per-folder.md @@ -1,3 +1,8 @@ + + # Generating a file per folder If you have a set of folders, and wish to perform a set of tasks on each, for instance... @@ -44,11 +49,11 @@ gulp.task('scripts', function() { // concat into foldername.js .pipe(concat(folder + '.js')) // write to output - .pipe(gulp.dest(scriptsPath)) + .pipe(gulp.dest(scriptsPath)) // minify .pipe(uglify()) // rename to folder.min.js - .pipe(rename(folder + '.min.js')) + .pipe(rename(folder + '.min.js')) // write to output again .pipe(gulp.dest(scriptsPath)); }); diff --git a/docs/recipes/running-tasks-in-series.md b/docs/recipes/running-tasks-in-series.md index b28e692a3..70857805f 100644 --- a/docs/recipes/running-tasks-in-series.md +++ b/docs/recipes/running-tasks-in-series.md @@ -1,3 +1,8 @@ + + # Running tasks in series By default, gulp CLI run tasks with maximum concurrency - e.g. it launches diff --git a/docs/recipes/server-with-livereload-and-css-injection.md b/docs/recipes/server-with-livereload-and-css-injection.md index a23cc239d..620218038 100644 --- a/docs/recipes/server-with-livereload-and-css-injection.md +++ b/docs/recipes/server-with-livereload-and-css-injection.md @@ -1,3 +1,8 @@ + + # Server with live-reloading and CSS injection With [BrowserSync](https://browsersync.io) and gulp, you can easily create a development server that is accessible to any device on the same WiFi network. BrowserSync also has live-reload built in, so there's nothing else to configure. diff --git a/docs/recipes/sharing-streams-with-stream-factories.md b/docs/recipes/sharing-streams-with-stream-factories.md index 16c110a06..036b1a7a1 100644 --- a/docs/recipes/sharing-streams-with-stream-factories.md +++ b/docs/recipes/sharing-streams-with-stream-factories.md @@ -1,3 +1,8 @@ + + # Sharing streams with stream factories If you use the same plugins in multiple tasks you might find yourself getting that itch to DRY things up. This method will allow you to create factories to split out your commonly used stream chains. diff --git a/docs/recipes/specifying-a-cwd.md b/docs/recipes/specifying-a-cwd.md index eba0ceca9..edac27f9a 100644 --- a/docs/recipes/specifying-a-cwd.md +++ b/docs/recipes/specifying-a-cwd.md @@ -1,3 +1,8 @@ + + # Specifying a new cwd (current working directory) This is helpful for projects using a nested directory structure, such as: diff --git a/docs/recipes/split-tasks-across-multiple-files.md b/docs/recipes/split-tasks-across-multiple-files.md index afee1be10..ab0a82f4c 100644 --- a/docs/recipes/split-tasks-across-multiple-files.md +++ b/docs/recipes/split-tasks-across-multiple-files.md @@ -1,3 +1,8 @@ + + # Split tasks across multiple files If your `gulpfile.js` is starting to grow too large, you can split the tasks diff --git a/docs/recipes/templating-with-swig-and-yaml-front-matter.md b/docs/recipes/templating-with-swig-and-yaml-front-matter.md index 50c98e5f7..818027ed1 100644 --- a/docs/recipes/templating-with-swig-and-yaml-front-matter.md +++ b/docs/recipes/templating-with-swig-and-yaml-front-matter.md @@ -1,3 +1,8 @@ + + # Templating with Swig and YAML front-matter Templating can be setup using `gulp-swig` and `gulp-front-matter`: diff --git a/docs/recipes/using-external-config-file.md b/docs/recipes/using-external-config-file.md index b073f1dfc..4d80ba70a 100644 --- a/docs/recipes/using-external-config-file.md +++ b/docs/recipes/using-external-config-file.md @@ -1,3 +1,8 @@ + + # Using external config file Beneficial because it's keeping tasks DRY and config.json can be used by another task runner, like `grunt`. diff --git a/docs/recipes/using-multiple-sources-in-one-task.md b/docs/recipes/using-multiple-sources-in-one-task.md index 39e3e3b23..b9e096256 100644 --- a/docs/recipes/using-multiple-sources-in-one-task.md +++ b/docs/recipes/using-multiple-sources-in-one-task.md @@ -1,3 +1,8 @@ + + # Using multiple sources in one task ```js diff --git a/docs/why-use-pump/README.md b/docs/why-use-pump/README.md index de6ebc85f..df62c4031 100644 --- a/docs/why-use-pump/README.md +++ b/docs/why-use-pump/README.md @@ -1,3 +1,8 @@ + + # Why Use Pump? When using `pipe` from the Node.js streams, errors are not propagated forward diff --git a/docs/writing-a-plugin/dealing-with-streams.md b/docs/writing-a-plugin/dealing-with-streams.md index fd518bd66..d757ab0d9 100644 --- a/docs/writing-a-plugin/dealing-with-streams.md +++ b/docs/writing-a-plugin/dealing-with-streams.md @@ -1,3 +1,8 @@ + + # Dealing with streams > It is highly recommended to write plugins supporting streams. Here is some information on creating a gulp plugin that supports streams. @@ -75,4 +80,3 @@ gulp.src('files/**/*.js', { buffer: false }) ## Some plugins using streams * [gulp-svgicons2svgfont](https://github.com/nfroidure/gulp-svgiconstosvgfont) - diff --git a/docs/writing-a-plugin/guidelines.md b/docs/writing-a-plugin/guidelines.md index b810ad8a1..0f7f9effe 100644 --- a/docs/writing-a-plugin/guidelines.md +++ b/docs/writing-a-plugin/guidelines.md @@ -1,3 +1,8 @@ + + # Guidelines > While these guidelines are totally optional, we **HIGHLY** recommend that everyone follows them. Nobody wants to use a bad plugin. These guidelines will actually help make your life easier by giving you assurance that your plugin fits well within gulp. diff --git a/docs/writing-a-plugin/recommended-modules.md b/docs/writing-a-plugin/recommended-modules.md index 0b49b39d4..69977d731 100644 --- a/docs/writing-a-plugin/recommended-modules.md +++ b/docs/writing-a-plugin/recommended-modules.md @@ -1,3 +1,8 @@ + + # Recommended Modules > Sticking to this curated list of recommended modules will make sure you don't violate the plugin guidelines and ensure consistency across plugins. diff --git a/docs/writing-a-plugin/testing.md b/docs/writing-a-plugin/testing.md index 487a87f95..72b1f5747 100644 --- a/docs/writing-a-plugin/testing.md +++ b/docs/writing-a-plugin/testing.md @@ -1,3 +1,8 @@ + + # Testing > Testing your plugin is the only way to ensure quality. It brings confidence to your users and makes your life easier. diff --git a/docs/writing-a-plugin/using-buffers.md b/docs/writing-a-plugin/using-buffers.md index e35e41b59..600356559 100644 --- a/docs/writing-a-plugin/using-buffers.md +++ b/docs/writing-a-plugin/using-buffers.md @@ -1,3 +1,8 @@ + + # Using buffers > Here is some information on creating gulp plugin that manipulates buffers.