Skip to content

Commit d942cf5

Browse files
dinoboffphated
authored andcommitted
Docs: Improve incremental build example & add gulp.lastRun API
1 parent 8806326 commit d942cf5

File tree

2 files changed

+87
-5
lines changed

2 files changed

+87
-5
lines changed

README.md

+54-5
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,56 @@ gulp.task('default', gulp.series('clean', 'all'));
8080

8181
## Incremental Builds
8282

83-
We recommend these plugins:
83+
You can filter out unchanged files between runs of a task using
84+
the `gulp.src` function's `since` option and `gulp.lastRun`:
85+
```js
86+
gulp.task('images', function() {
87+
return gulp.src(paths.images, {since: gulp.lastRun('images')})
88+
.pipe(imagemin({optimizationLevel: 5}))
89+
.pipe(gulp.dest('build/img'));
90+
});
91+
92+
gulp.task('watch', function() {
93+
gulp.watch(paths.images, 'images');
94+
});
95+
```
96+
Task run times are saved in memory and are lost when gulp exits. It will only
97+
save time during the `watch` task when running the `images` task
98+
for a second time.
8499

85-
- [gulp-changed](https://github.com/sindresorhus/gulp-changed) - only pass through changed files
86-
- [gulp-cached](https://github.com/contra/gulp-cached) - in-memory file cache, not for operation on sets of files
87-
- [gulp-remember](https://github.com/ahaurw01/gulp-remember) - pairs nicely with gulp-cached
88-
- [gulp-newer](https://github.com/tschaub/gulp-newer) - pass through newer source files only, supports many:1 source:dest
100+
If you want to compare modification time between files instead, we recommend these plugins:
101+
- [gulp-changed];
102+
- or [gulp-newer] - supports many:1 source:dest.
103+
104+
[gulp-newer] example:
105+
```js
106+
gulp.task('images', function() {
107+
var dest = 'build/img';
108+
return gulp.src(paths.images)
109+
.pipe(newer(dest)) // pass through newer images only
110+
.pipe(imagemin({optimizationLevel: 5}))
111+
.pipe(gulp.dest(dest));
112+
});
113+
```
114+
115+
If you can't simply filter out unchanged files, but need them in a later phase
116+
of the stream, we recommend these plugins:
117+
- [gulp-cached] - in-memory file cache, not for operation on sets of files
118+
- [gulp-remember] - pairs nicely with gulp-cached
119+
120+
[gulp-remember] example:
121+
```js
122+
gulp.task('scripts', function () {
123+
return gulp.src(scriptsGlob)
124+
.pipe(cache('scripts')) // only pass through changed files
125+
.pipe(header('(function () {')) // do special things to the changed files...
126+
.pipe(footer('})();')) // for example,
127+
// add a simple module wrap to each file
128+
.pipe(remember('scripts')) // add back all files to the stream
129+
.pipe(concat('app.js')) // do things that require all files
130+
.pipe(gulp.dest('public/'))
131+
});
132+
```
89133

90134
## Want to test the latest and greatest?
91135

@@ -135,3 +179,8 @@ Become a sponsor to get your logo on our README on Github.
135179

136180
[backers-image]: https://opencollective.com/gulpjs/backers.svg
137181
[sponsors-image]: https://opencollective.com/gulpjs/sponsors.svg
182+
183+
[gulp-cached]: https://github.com/contra/gulp-cached
184+
[gulp-remember]: https://github.com/ahaurw01/gulp-remember
185+
[gulp-changed]: https://github.com/sindresorhus/gulp-changed
186+
[gulp-newer]: https://github.com/tschaub/gulp-newer

docs/API.md

+33
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,38 @@ gulp.task('sometask', function() {
350350
});
351351
```
352352

353+
### lastRun(taskName, [timeResolution])
354+
355+
Returns the timestamp of the last time the task ran successfully. The time
356+
will be the time the task started. Returns `undefined` if the task has
357+
not run yet.
358+
359+
#### taskName
360+
361+
Type: `String`
362+
363+
The name of the registered task or of a function.
364+
365+
#### timeResolution
366+
367+
Type: `Number`.
368+
369+
Default: `1000` on node v0.10, `0` on node v0.12 (and iojs v1.5).
370+
371+
Set the time resolution of the returned timestamps. Assuming
372+
the task named "someTask" ran at `1426000004321`:
373+
- `gulp.lastRun('someTask', 1000)` would return `1426000004000`.
374+
- `gulp.lastRun('someTask', 100)` would return `1426000004300`.
375+
376+
`timeResolution` allows you to compare a run time to a file [mtime stat][fs stats]
377+
attribute. This attribute time resolution may vary depending of the node version
378+
and the file system used:
379+
- on node v0.10, a file [mtime stat][fs stats] time resolution of any files will be 1s at best;
380+
- on node v0.12 and iojs v1.5, 1ms at best;
381+
- for files on FAT32, the mtime time resolution is 2s;
382+
- on HFS+ and Ext3, 1s;
383+
- on NTFS, 1s on node v0.10, 100ms on node 0.12;
384+
- on Ext4, 1s on node v0.10, 1ms on node 0.12.
353385

354386
### gulp.parallel(...tasks)
355387

@@ -482,3 +514,4 @@ The path to the file that triggered the event.
482514
[Undertaker]: https://github.com/phated/undertaker
483515
[vinyl File instance]: https://github.com/gulpjs/vinyl
484516
[Vinyl files]: https://github.com/gulpjs/vinyl-fs
517+
[fs stats]: https://nodejs.org/api/fs.html#fs_class_fs_stats

0 commit comments

Comments
 (0)