From c433c702fda288f7efd214ea348cc5b8423c67cd Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Thu, 18 Oct 2018 17:04:41 -0700 Subject: [PATCH] Docs: Replace some links in Getting Started --- docs/getting-started/3-creating-tasks.md | 4 ++-- docs/getting-started/5-working-with-files.md | 10 +++++----- docs/getting-started/8-watching-files.md | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/getting-started/3-creating-tasks.md b/docs/getting-started/3-creating-tasks.md index 5d784a5bd..a1decb572 100644 --- a/docs/getting-started/3-creating-tasks.md +++ b/docs/getting-started/3-creating-tasks.md @@ -209,7 +209,7 @@ function javascript(cb) { exports.build = series(clean, parallel(css, javascript)); ``` -[async-completion-docs]: 4-async-completion.md -[using-async-await-docs]: 4-async-completion.md#using-asyncawait +[async-completion-docs]: ../getting-started/4-async-completion.md +[using-async-await-docs]: ../getting-started/4-async-completion.md#using-asyncawait [img-gulp-tasks-command]: https://gulpjs.com/img/docs-gulp-tasks-command.png [async-once]: https://github.com/gulpjs/async-once diff --git a/docs/getting-started/5-working-with-files.md b/docs/getting-started/5-working-with-files.md index 1f2e7af71..9ac333790 100644 --- a/docs/getting-started/5-working-with-files.md +++ b/docs/getting-started/5-working-with-files.md @@ -90,9 +90,9 @@ exports.default = function() { * Streaming mode exists mainly to operate on large files that can't fit in memory, like giant images or movies. The contents are streamed from the filesystem in small chunks instead of loaded all at once. If you need to use streaming mode, look for a plugin that supports it or write your own. * Empty mode contains no contents and is useful when only working with file metadata. -[explaining-globs-docs]: 6-explaining-globs.md -[creating-tasks-docs]: 3-creating-tasks.md -[overlapping-globs-docs]: 6-explaining-globs.md#overlapping-globs +[explaining-globs-docs]: ../getting-started/6-explaining-globs.md +[creating-tasks-docs]: ../getting-started/3-creating-tasks.md +[overlapping-globs-docs]: ../getting-started/6-explaining-globs.md#overlapping-globs [node-streams-docs]: https://nodejs.org/api/stream.html -[symlink-api-docs]: ../documentation-missing.md -[src-options-api-docs]: ../documentation-missing.md +[symlink-api-docs]: ../api/symlink.md +[src-options-api-docs]: ../api/src.md#options diff --git a/docs/getting-started/8-watching-files.md b/docs/getting-started/8-watching-files.md index 910fdbd41..9b8268ebe 100644 --- a/docs/getting-started/8-watching-files.md +++ b/docs/getting-started/8-watching-files.md @@ -115,8 +115,8 @@ __Be careful:__ The returned chokidar instance doesn't have queueing, delay, or Gulp has an optional dependency called [fsevents][fsevents-package], which is a Mac-specific file watcher. If you see an installation warning for fsevents - _"npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents"_ - it is not an issue. If fsevents installation is skipped, a fallback watcher will be used and any errors occurring in your gulpfile aren't related to this warning. -[globs-docs]: 6-explaining-globs.md -[creating-tasks-docs]: 3-creating-tasks.md -[async-completion-doc]: 4-async-completion.md +[globs-docs]: ../getting-started/6-explaining-globs.md +[creating-tasks-docs]: ../getting-started/3-creating-tasks.md +[async-completion-doc]: ../getting-started/4-async-completion.md [chokidar-module-package]: https://www.npmjs.com/package/chokidar [fsevents-package]: https://www.npmjs.com/package/fsevents