Skip to content

Commit

Permalink
Docs: Replace some links in Getting Started
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Oct 19, 2018
1 parent 5c07954 commit c433c70
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started/3-creating-tasks.md
Expand Up @@ -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
10 changes: 5 additions & 5 deletions docs/getting-started/5-working-with-files.md
Expand Up @@ -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
6 changes: 3 additions & 3 deletions docs/getting-started/8-watching-files.md
Expand Up @@ -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

0 comments on commit c433c70

Please sign in to comment.