Skip to content

Commit e447d81

Browse files
janiceilenephated
authored andcommitted
Docs: Update dest() documentation
1 parent a3b8ce1 commit e447d81

File tree

1 file changed

+95
-39
lines changed

1 file changed

+95
-39
lines changed

docs/api/dest.md

+95-39
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,118 @@ hide_title: true
55
sidebar_label: dest()
66
-->
77

8-
# `gulp.dest(path[, options])`
8+
# dest()
99

10-
Can be piped to and it will write files. Re-emits all data passed to it so you
11-
can pipe to multiple folders. Folders that don't exist will be created.
10+
Creates a stream for writing [Vinyl][vinyl-concepts] objects to the file system.
1211

13-
```javascript
14-
gulp.src('./client/templates/*.pug')
15-
.pipe(pug())
16-
.pipe(gulp.dest('./build/templates'))
17-
.pipe(minify())
18-
.pipe(gulp.dest('./build/minified_templates'));
12+
## Usage
13+
14+
```js
15+
const { src, dest } = require('gulp');
16+
17+
function copy() {
18+
return src('input/*.js')
19+
.pipe(dest('output/'));
20+
}
21+
22+
exports.copy = copy;
23+
```
24+
25+
## Signature
26+
27+
```js
28+
dest(directory, [options])
1929
```
2030

21-
The write path is calculated by appending the file relative path to the given
22-
destination directory. In turn, relative paths are calculated against
23-
the file base. See `gulp.src` above for more info.
31+
### Parameters
32+
33+
| parameter | type | note |
34+
|:--------------:|:-----:|--------|
35+
| directory <br> **(required)** | string <br> function | The path of the output directory where files will be written. If a function is used, the function will be called with each Vinyl object and must return a string directory path. |
36+
| options | object | Detailed in [Options][options-section] below. |
37+
38+
### Returns
39+
40+
A stream that can be used in the middle or at the end of a pipeline to create files on the file system.
41+
Whenever a Vinyl object is passed through the stream, it writes the contents and other details out to the file system at the given directory. If the Vinyl object has a `symlink` property, a symbolic link will be created instead of writing the contents. After the file is created, its [metadata will be updated][metadata-updates-section] to match the Vinyl object.
42+
43+
Whenever a file is created on the file system, the Vinyl object will be modified.
44+
* The `cwd`, `base`, and `path` properties will be updated to match the created file.
45+
* The `stat` property will be updated to match the file on the file system.
46+
* If the `contents` property is a stream, it will be reset so it can be read again.
47+
48+
### Errors
2449

25-
## path
26-
Type: `String` or `Function`
50+
When `directory` is an empty string, throws an error with the message, "Invalid dest() folder argument. Please specify a non-empty string or a function."
2751

28-
The path (output folder) to write files to. Or a function that returns it,
29-
the function will be provided a [vinyl File instance].
52+
When `directory` is not a string or function, throws an error with the message, "Invalid dest() folder argument. Please specify a non-empty string or a function."
3053

31-
## options
32-
Type: `Object`
54+
When `directory` is a function that returns an empty string or `undefined`, emits an error with the message, "Invalid output folder".
3355

34-
### options.cwd
35-
Type: `String`
56+
### Options
3657

37-
Default: `process.cwd()`
3858

39-
`cwd` for the output folder, only has an effect if provided output folder is
40-
relative.
59+
**For options that accept a function, the passed function will be called with each Vinyl object and must return a value of another listed type.**
4160

42-
### options.mode
43-
Type: `String` or `Number`
61+
| name | type | default | note |
62+
|:-------:|:------:|-----------|-------|
63+
| cwd | string <br> function | `process.cwd()` | The directory that will be combined with any relative path to form an absolute path. Is ignored for absolute paths. Use to avoid combining `directory` with `path.join()`. |
64+
| mode | number <br> function | `stat.mode` of the Vinyl object | The mode used when creating files. If not set and `stat.mode` is missing, the process' mode will be used instead. |
65+
| dirMode | number <br> function | | The mode used when creating directories. If not set, the process' mode will be used. |
66+
| overwrite | boolean <br> function | true | When true, overwrites existing files with the same path. |
67+
| append | boolean <br> function | false | If true, adds contents to the end of the file, instead of replacing existing contents. |
68+
| sourcemaps | boolean <br> string <br> function | false | If true, writes inline sourcemaps to the output file. Specifying a `string` path will write external [sourcemaps][sourcemaps-section] at the given path. |
69+
| relativeSymlinks | boolean <br> function | false | When false, any symbolic links created will be absolute. <br> **Note**: Ignored if a junction is being created, as they must be absolute. |
70+
| useJunctions | boolean <br> function | true | This option is only relevant on Windows and ignored elsewhere. When true, creates directory symbolic link as a junction. Detailed in [Symbolic links on Windows][symbolic-links-section] below. |
4471

45-
Default: the mode of the input file (file.stat.mode) or the process mode
46-
if the input file has no mode property.
72+
## Metadata updates
4773

48-
Octal permission specifying the mode the files should be created with: e.g.
49-
`"0744"`, `0744` or `484` (`0744` in base 10).
74+
Whenever the `dest()` stream creates a file, the Vinyl object's `mode`, `mtime`, and `atime` are compared to the created file. If they differ, the created file will be updated to reflect the Vinyl object's metadata. If those properties are the same, or gulp doesn't have permissions to make changes, the attempt is skipped silently.
75+
76+
This functionality is disabled on Windows or other operating systems that don't support Node's `process.getuid()` or `process.geteuid()` methods. This is due to Windows having unexpected results through usage of `fs.fchmod()` and `fs.futimes()`.
77+
78+
**Note**: The `fs.futimes()` method internally converts `mtime` and `atime` timestamps to seconds. This division by 1000 may cause some loss of precision on 32-bit operating systems.
79+
80+
## Sourcemaps
81+
82+
Sourcemap support is built directly into `src()` and `dest()`, but it is disabled by default. Enable it to produce inline or external sourcemaps.
83+
84+
Inline sourcemaps:
85+
```js
86+
const { src, dest } = require('gulp');
87+
const uglify = require('gulp-uglify');
88+
89+
src('input/**/*.js', { sourcemaps: true })
90+
.pipe(uglify())
91+
.pipe(dest('output/', { sourcemaps: true }));
92+
```
93+
94+
External sourcemaps:
95+
```js
96+
const { src, dest } = require('gulp');
97+
const uglify = require('gulp-uglify');
98+
99+
src('input/**/*.js', { sourcemaps: true })
100+
.pipe(uglify())
101+
.pipe(dest('output/', { sourcemaps: '.' }));
102+
```
50103

51-
### options.dirMode
52-
Type: `String` or `Number`
104+
## Symbolic links on Windows
53105

54-
Default: Default is the process mode.
106+
When creating symbolic links on Windows, a `type` argument is passed to Node's `fs.symlink()` method which specifies the kind of target being linked. The link type is set to:
107+
* `'file'` when the target is a regular file
108+
* `'junction'` when the target is a directory
109+
* `'dir'` when the target is a directory and the user disables the `useJunctions` option
55110

56-
Octal permission specifying the mode the directory should be created with: e.g.
57-
`"0755"`, `0755` or `493` (`0755` in base 10).
58111

59-
### options.overwrite
60-
Type: `Boolean`
112+
If you try to create a dangling (pointing to a non-existent target) link, the link type can't be determined automatically. In these cases, behavior will vary depending on whether the dangling link is being created via `symlink()` or via `dest()`.
61113

62-
Default: `true`
114+
For dangling links created via `symlink()`, the incoming Vinyl object represents the target, so its stats will determine the desired link type. If `isDirectory()` returns false then a `'file'` link is created, otherwise a `'junction'` or a `'dir'` link is created depending on the value of the `useJunctions` option.
63115

64-
Specify if existing files with the same path should be overwritten or not.
116+
For dangling links created via `dest()`, the incoming Vinyl object represents the link - typically loaded from disk via `src(..., { resolveSymlinks: false })`. In this case, the link type can't be reasonably determined and defaults to using `'file'`. This may cause unexpected behavior if you are creating a dangling link to a directory. **Avoid this scenario.**
65117

66-
[vinyl File instance]: https://github.com/gulpjs/vinyl
118+
[sourcemaps-section]: #sourcemaps
119+
[symbolic-links-section]: #symbolic-links-on-windows
120+
[options-section]: #options
121+
[metadata-updates-section]: #metadata-updates
122+
[vinyl-concepts]: concepts.md#vinyl

0 commit comments

Comments
 (0)