Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ahaurw01/gulp-remember
A plugin for gulp that remembers and recalls files passed through it
https://github.com/ahaurw01/gulp-remember
gulp remember-files stream
Last synced: about 2 months ago
JSON representation
A plugin for gulp that remembers and recalls files passed through it
- Host: GitHub
- URL: https://github.com/ahaurw01/gulp-remember
- Owner: ahaurw01
- License: mit
- Created: 2014-03-30T19:21:07.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T11:49:16.000Z (over 6 years ago)
- Last Synced: 2024-04-28T03:10:06.358Z (8 months ago)
- Topics: gulp, remember-files, stream
- Language: JavaScript
- Size: 39.1 KB
- Stars: 149
- Watchers: 7
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulp-remember [![NPM version](https://badge.fury.io/js/gulp-remember.png)](http://badge.fury.io/js/gulp-remember) [![Build Status](https://travis-ci.org/ahaurw01/gulp-remember.svg?branch=master)](https://travis-ci.org/ahaurw01/gulp-remember)
`gulp-remember` is a [gulp](https://github.com/gulpjs/gulp) plugin that remembers files that have passed through it. `gulp-remember` adds all the files it has ever seen back into the stream.
`gulp-remember` pairs nicely with [gulp-cached](https://github.com/wearefractal/gulp-cached) when you want to only rebuild the files that changed, but still need to operate on all files in the set.
```javascript
var remember = require('gulp-remember');
```## Usage
This example shows a scenario in which you want to wrap all script files in some type of module system, then concatenate into one `app.js` file for consumption.
As long as your other plugins can keep up, this example showcases the Holy Grail of Build Tools™ - the ability to build once, `git checkout different-branch` (a branch with drastically different files), and have the output be exactly what you would expect.
```javascript
var gulp = require('gulp'),
header = require('gulp-header'),
footer = require('gulp-footer'),
concat = require('gulp-concat'),
cache = require('gulp-cached'),
remember = require('gulp-remember');var scriptsGlob = 'src/**/*.js';
gulp.task('scripts', function () {
return gulp.src(scriptsGlob)
.pipe(cache('scripts')) // only pass through changed files
.pipe(header('(function () {')) // do special things to the changed files...
.pipe(footer('})();')) // for example, add a stupid-simple module wrap to each file
.pipe(remember('scripts')) // add back all files to the stream
.pipe(concat('app.js')) // do things that require all files
.pipe(gulp.dest('public/'))
});gulp.task('watch', function () {
var watcher = gulp.watch(scriptsGlob, ['scripts']); // watch the same files in our scripts task
watcher.on('change', function (event) {
if (event.type === 'deleted') { // if a file is deleted, forget about it
delete cache.caches['scripts'][event.path];
remember.forget('scripts', event.path);
}
});
});
```## API
### remember(name)
Returns a stream ready to remember files.
#### name (optional)
Type: `String`
The name of a specific cache you want to use. You may want to `remember('javascripts')` in one area of your build while also being able to `remember('images')` in another.
You can choose not to pass any name if you only care about caching one set of files in your whole build.
### remember.forget(name, path)
Drops a file from a remember cache.
#### name (optional)
Type: `String`
The name of the remember cache on which you want to operate. You do not need to pass this if you want to operate on the default remember cache.
**Note:** If the name does not refer to a cache that exists, a warning is logged. Thanks to @jcppman for this.
#### path (required)
Type: `String`
The path of the file you wish to drop from the remember cache. The path is used under the covers as the unique identifier for the file within one remember cache.
**Important note!** The path you pass to `forget` must be the path of the *processed* file. You may encounter instances where your source file is `some/path/script.coffee` while the processed file is `some/path/script.js`. Because anything could happen before you `remember` a file, it is up to you to know how you need to `forget` it with the correct path.
If you want to `forget` files using their name history, you might want to use [gulp-remember-history](https://www.npmjs.com/package/gulp-remember-history).
**Another note:** If the path does not match a file object that exists in the given cache, a warning is logged. Thanks to @jcppman for this.
### remember.forgetAll(name)
Drops all files from a remember cache.
#### name (optional)
Type: `String`
The name of the remember cache you want to wipe. You do not need to pass this if you want to operate on the default remember cache.
**Note:** If the name does not refer to a cache that exists, a warning is logged.
### remember.cacheFor(name)
Get a raw remember cache. This can be useful for checking state of the cache, like whether or not a file has been seen before.
**Note:** Remembering or forgetting files by interacting directly with this returned object is not recommended.
#### name (optional)
Type: `String`
The name of the remember cache you want to retrieve. You do not need to pass this if you want to retrieve the default remember cache.
## Gotchas
### Forgetting files with altered paths
See the API note above for the `path` argument when `forget`ing files. `forget` can only drop files by their *processed* path name, not their *source* path name. In common cases, these two things are equivalent.
Thanks to @brian-mann for bringing this up.
### File ordering
Be aware that this plugin does not make specific attempts to keep your files in any order. For example, if you add a new file governed by a glob you are watching, this file will enter the stream last, even if this file would preceed others alphabetically.
If your build process depends on file ordering, please make use of the [gulp-order](https://www.npmjs.org/package/gulp-order) plugin after `remember`ing files.
Thanks to @brian-mann for bringing this up.
### Files do not change in the cache
Files are `.clone()`'d when placed into the cache and when taken out of the cache. This ensures that no other aspects of the build will alter the cache.
Thanks to @mjancarik for this addition.
## License
(MIT License)
Copyright (c) 2014 Aaron Haurwitz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.